サーチ…


ViewPagerなしでのTabLayoutの使用

たいていの場合、 TabLayoutTabLayoutと一緒に使用され、 付属のスワイプ機能を取得します。

使用することが可能であるTabLayoutせずにViewPager使用してTabLayout.OnTabSelectedListener

まず、アクティビティのXMLファイルにTabLayoutを追加します。

<android.support.design.widget.TabLayout
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:id="@+id/tabLayout" />

Activity内を移動するには、選択したタブに基づいてUIを手動で入力します。

TabLayout tabLayout = (TabLayout) findViewById(R.id.tabLayout);
tabLayout.addOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
    @Override
    public void onTabSelected(TabLayout.Tab tab) {
        int position = tab.getPosition();
        switch (tab.getPosition()) {
            case 1:
                getSupportFragmentManager().beginTransaction()
                    .replace(R.id.fragment_container, new ChildFragment()).commit();
                break;
            // Continue for each tab in TabLayout
    }

    @Override
    public void onTabUnselected(TabLayout.Tab tab) {

    }

    @Override
    public void onTabReselected(TabLayout.Tab tab) {

    }
});


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow