FragmentManager is an interface for interacting with Fragment objects inside an Activity in Android.
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 fragmentmanagerI have simple code below FragmentManager fragmentManager = getFragmentManager(); FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction(); fragmentTransaction.replace(R.id.fragment_container, mFeedFragment); fragmentTransaction.…
android fragmenttransaction fragmentmanager fragment-backstackFor some reason when I try to show a Dialog I get an error from dialog.show(fm, DIALOG_DATE); …
java android dialog fragment fragmentmanagerI have an activity with 3 fragments; a header; a body; a footer (same point as in HTML). The bodyfragment contains …
android fragment fragmenttransaction fragmentmanagerI have method in fragment class. I want to call that method from main activity but I don't want to …
java android android-fragments android-activity fragmentmanagerI'm implementing menu navigation using Fragments. So I begin with Home, and then users can navigate to diferent sections and …
android android-fragments android-nested-fragment fragmentmanagerI sometimes get the following exception when working with Fragments: FATAL EXCEPTION: main java.lang.NullPointerException at android.support.v4.…
java android android-fragments fragmentmanagerI'm learning Android development. I get stuck at something that should be very easy. Im creating an App with one …
android android-fragments fragment fragmentmanagerSince API 27 FragmentPagerAdapter is deprecated. What's the best alternative to use for this? In my case, I understand something like …
android kotlin android-viewpager fragmentmanager fragmentpageradapterI've looked at all the questions on Stackoverflow but could not find a single definitive answer to this question. How …
android android-fragments fragmentmanager