开发者

Get fragment's container view id

开发者 https://www.devze.com 2023-03-25 03:28 出处:网络
I have a fragment added using transaction.add(R.id.content, fragment, null); and I need to start new fragment from this one. But to do this I need to know first fragment\'s container view id (R.id.

I have a fragment added using

transaction.add(R.id.content, fragment, null);

and I need to start new fragment from this one. But to do this I need to know first fragment's container view id (R.id.content in my case). How can I get this?

I can just use this id directly but I suppose fragment shouldn't know such kind of details about parent activity. For example it will be impossible to use this fragment in another activity in this case.

May be "starting" fragment from another one is a bad practice and all fragment handling logic should be handled by activity itself? But creating nice sequences of fragments starting each other seems quite useful (for example detalView->moreDetailView->evenMoreDetai开发者_开发问答lView).


You can access the container's id by calling

((ViewGroup)getView().getParent()).getId();


I don't know if I exactly understand your question, but you get the Container in onCreateView. I suppose you could stash it in a local variable.

public View onCreateView(LayoutInflater inflater, 
  ViewGroup container,
  Bundle savedInstanceState) {
  mContainer = container;
  ...
}


I think there's a more standard way of accessing the view rather than using

((ViewGroup) getView().getParent()).getId()

I will assume that you're working with a MainActivity that presents a list fragment, which can then present another list fragment upon clicking an item, and so on. I'm assuming that you've chosen to replace the main view of MainActivity with the contents of the list fragments you present.

Because each list fragment is being hosted in the MainActivity, you can always access the view of the MainActivity.

// Inside of onListItemClick...
FragmentManager fm = getFragmentManager();
Fragment fragment = new MyOtherListFragment();

FrameLayout contentView = (FrameLayout) getActivity().findViewById(R.id.content_view);

fm.beginTransaction()
        .replace(contentView.getId(), fragment)
        .addToBackStack(null)
        .commit();

The above example assumes you have an XML layout resource that you set in the MainActivity, call the XML resource R.layout.activity_main, where there is a FrameLayout with the id R.id.content_view. This is the approach I took. The example I present here is a simpler version from the one that I actually wrote in my app.

Incidentally, my version of IntelliJ (version 1.0.1) warns me that

((ViewGroup) getView().getParent)

may throw a NullPointerException.


Assuming you have Fragment instance mCurrentFragment in Activity class. You can get Fragment's container View via

int id = mCurrentFragment.getView().getParent().getId();
ViewGroup vg = (ViewGroup) findViewById(id); // Fragment's container View


The Kotlin version

val container = view?.parent as? ViewGroup ?: return

It can be added to a "hand-dandy" extension:

fun Fragment.container(): ViewGroup? {
    return view?.parent as? ViewGroup
}

Then get the id

container.id
container().id


Add the new class

    import androidx.navigation.NavController
    
    class Navigator {
        companion object {
            var fragment1_id: Int = 0
            var fragment2_id: Int = 0
            var navController : NavController? = null
            fun goFragment1()
            {
                navController?.navigate(fragment1_id)
            }
            fun goFragment2()
            {
                navController?.navigate(fragment2_id)
            }
        }
    }

In main activity:

        override fun onCreateView(
            inflater: LayoutInflater,
            container: ViewGroup?,
            savedInstanceState: Bundle?
        ): View {
    ...
            val navController = findNavController(R.id.nav_host_fragment_content_main)
    
            Navigator.navController = navController
            Navigator.fragment1_id = R.id.nav_fragment1
            Navigator.fragment2_id = R.id.nav_fragment2
    <navigation xmlns:android...    
        <fragment
            android:id="@+id/nav_fragment1"
        ... 
        <fragment
            android:id="@+id/nav_fragment2"
        

Click Listener in any fragment:

    fun onClickButton(view: View)
    {
        Navigator.goFragment1()
    }
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号