How to know if a Fragment is Visible?

前端 未结 10 1949
闹比i
闹比i 2020-12-01 06:07

I\'m using the support library v4 and my questions are, How to know if a Fragment is Visible? and How can I change the propierties of the Layout inflated in the Fragment? Th

10条回答
  •  鱼传尺愫
    2020-12-01 06:25

    ArticleFragment articleFrag = (ArticleFragment)
                getSupportFragmentManager().findFragmentById(R.id.article_fragment);
    
        if (articleFrag != null && articleFrag.isVisible()) {
    
            // Call a method in the ArticleFragment to update its content
            articleFrag.updateArticleView(position);
        }
    

    see http://developer.android.com/training/basics/fragments/communicating.html

提交回复
热议问题