I am creating a program to practice what I have learned so far and to learn more, but I have reached a stalemate. The question is:
I'm creating a question and answer game for two players, each one stands on one side of the phone to play, the...
Context
I have an application that contains a Activity called MapActivity (of which is a Map type activity that inherits from GoogleMaps api), and another Activity common that will serve as a search with filters to refine...
I'm making an Android application that uses time and date selectors (DatePicker and TimePicker), which are displayed in the form of fragments. When the user sets the desired time, I need it to be passed from the selector fragment to the main win...
The Navigation Drawer had some changes, where it was used the onNavigationItemSelected(int position, long itemId) method and now comes with the method
onNavigationItemSelected(MenuItem item) .
I tried to implement the old temp...
I needed to inflate a form on a tab, I always do the form in xml, but this time I did via code, does anyone know how I display my class instead of xml in a FragmentTab ?
Code to inflate xml to View :
if(this.getTag() == "formula...
I'm trying to implement in the application that I'm creating Tabs, like this:
But when I try to implement, I'm always faced with deprecated classes and methods, such as TabListener , ActionBarActivity and now I'm not...
I'm working on a college project where I made an application that uses fragments. I've always been accustomed to creating a fragment in the following way:
// imports
...
public class LoginFragment extends Fragment {
public LoginFragment(...