如何在片段之间切换

时间:2017-08-21 21:41:41

标签: android

我有一个包含1个主要活动和5个主要片段的应用。创建MainActivity时,我创建一个包含5个片段中每个片段的Lis​​t。向用户呈现屏幕底部的标签栏,他/她可以使用该标签栏在片段之间导航。如何设置此选项,以便在用户选择选项卡时,相应的片段显示为而不创建新的实例?只是想将屏幕上的视图更改为已创建的片段。

我正在使用来自https://github.com/roughike/BottomBar的BottomBar,当按下标签时,它会调用“onTabSelected”接口方法。

1 个答案:

答案 0 :(得分:0)

您可以将5片段与您指定的库一起使用。布局文件应该如下所示

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">

<!-- This could be your fragment container, or something -->
<FrameLayout
    android:id="@+id/contentContainer"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_above="@+id/bottomBar" />

<com.roughike.bottombar.BottomBar
    android:id="@+id/bottomBar"
    android:layout_width="match_parent"
    android:layout_height="60dp"
    android:layout_alignParentBottom="true"
    app:bb_tabXmlResource="@xml/bottombar_tabs" />

</RelativeLayout>

包含Activity类将使用Fragment替换Framelayout,具体取决于从BottomBar View中选择的Fragment。一个简单的例子

public class Main3Activity extends AppCompatActivity {

private Fragment fragment;
private FragmentManager fragmentManager;

@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_three_tabs);

    BottomBar bottomBar = (BottomBar) findViewById(R.id.bottomBar);
    bottomBar.setOnTabSelectListener(new OnTabSelectListener() {
        @Override
        public void onTabSelected(@IdRes int tabId) {
            if(tabId == R.id.tab_home){
                fragment = new HomeFragment();
            }
            if(tabId == R.id.tab_favorite){
                fragment = new FavoriteFragment();
            }
        }
        FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
        ft.replace(R.id.contentContainer, fragment).commit();
    });

    bottomBar.setOnTabReselectListener(new OnTabReselectListener() {
        @Override
        public void onTabReSelected(@IdRes int tabId) {
            Toast.makeText(getApplicationContext(), TabMessage.get(tabId, true), Toast.LENGTH_LONG).show();
        }
    });
}

}

然后你可以使用下面的内容创建单独的片段

public class FavoriteFragment extends Fragment {

   public FavoriteFragment() {
   }

   @Override
   public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
       return inflater.inflate(R.layout.fragment_favorite, container, false 
   );
  }
}