嗨朋友们,我在movies.xml中有两个框架布局,即容器,detail_screen。在容器中将添加包含listview的movies.xml,并且在detail_screen中将具有名为 movie_details.xml的可扩展列表视图。现在想以编程方式检查detail_screen是否已经呈现片段或not.if 提出只是想删除该片段。我按照以下方式进行了操作,并且工作正常。
if (getSupportFragmentManager().findFragmentByTag("MyFragment") != null) {
getSupportFragmentManager().beginTransaction().remove(getSupportFragmentManager().findFragmentByTag("MyFragment")).commit();
}
但是有没有其他方法可以通过编程方式在android的框架布局中找到片段是否存在。提前致谢