Top "Android-fragmentactivity" questions

An Activity subclass introduced through the compatibility package to provide an implementation of the Fragment framework on version below Honeycomb.

Start an activity from a fragment

I have 2 fragments with on both fragments a button. When I press the button I'd like to start a new …

android android-fragments android-activity android-fragmentactivity
How can I access getSupportFragmentManager() in a fragment?

I have a FragmentActivity and I want to use a map fragment within it. I'm having a problem getting the …

android android-fragments android-support-library android-fragmentactivity fragmentmanager
Default Activity not found in Android Studio

I just upgraded to Android Studio 0.2.8 and I am getting an error that says "Default Activity not found" when I …

android android-studio android-fragmentactivity
Android ViewPager with bottom dots

I want to add 3 bottom dots to my ViewPager, like this. I use FragmentActivity and support library ViewPager.

android user-interface android-viewpager android-fragmentactivity viewpagerindicator
Setting Custom ActionBar Title from Fragment

In my Main FragmentActivity, I setup my custom ActionBar title like this: LayoutInflater inflator = (LayoutInflater) this .getSystemService(Context.LAYOUT_INFLATER_…

java android android-fragments android-actionbar android-fragmentactivity
Android check null or empty string in Android

In my trying AsyncTask I get email address from my server. In onPostExecute() I have to check is email address …

android android-asynctask android-fragmentactivity
startActivityForResult() from a Fragment and finishing child Activity, doesn't call onActivityResult() in Fragment

FirstActivity.Java has a FragmentA.Java which calls startActivityForResult(). SecondActivity.Java call finish() but onActivityResult never get called which is …

android android-fragmentactivity
Difference between Activity and FragmentActivity

I was working on fragments and came across two things Activity and FragmentActivity which are used several times. I want …

android android-fragments android-support-library android-fragmentactivity
Manage toolbar's navigation and back button from fragment in android

All of my fragments are controlled through ActionBarActivity (mainActivity), inside mainActivity a DrawerLayout is implemented and all the child fragments …

android android-actionbar navigation-drawer android-fragmentactivity android-toolbar
Android - Activity vs FragmentActivity?

I am new in Android. I want to build an app with tab format. I found many documentation where Activity …

android android-activity android-fragmentactivity