91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中如何使用TabLayout+ViewPager實現底部導航欄

發布時間:2022-04-11 16:42:31 來源:億速云 閱讀:690 作者:iii 欄目:編程語言

這篇文章主要介紹“Android中如何使用TabLayout+ViewPager實現底部導航欄”,在日常操作中,相信很多人在Android中如何使用TabLayout+ViewPager實現底部導航欄問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Android中如何使用TabLayout+ViewPager實現底部導航欄”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

布局

<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"                 xmlns:app="http://schemas.android.com/apk/res-auto"                 android:layout_width="match_parent"                 android:layout_height="match_parent"                 android:orientation="vertical">      <include layout="@layout/fragment_content"/>      <LinearLayout         android:layout_width="match_parent"         android:layout_height="match_parent"         android:orientation="vertical">           <android.support.v4.view.ViewPager             android:id="@+id/view_pager"             android:layout_width="match_parent"             android:layout_height="0dp"             android:layout_weight="1"></android.support.v4.view.ViewPager>          <android.support.design.widget.TabLayout             android:id="@+id/tab_layout"             android:layout_width="match_parent"             android:layout_height="56dp"             app:tabBackground="@color/white"             app:tabIndicatorHeight="0dp"             app:tabSelectedTextColor="@color/colorPrimary"             app:tabTextAppearance="@style/tabTextSizeStyle"             app:tabTextColor="@color/black_1"></android.support.design.widget.TabLayout>     </LinearLayout> </RelativeLayout>

代碼

mViewPager = (ViewPager) view.findViewById(R.id.view_pager);         mTabLayout = (TabLayout) view.findViewById(R.id.tab_layout);         initTabList();         mAdapter = new TabLayoutFragmentAdapter(getChildFragmentManager(), mTabList, getActivity(), mFragments, mTabImgs);         mViewPager.setAdapter(mAdapter);         mViewPager.setCurrentItem(0);         mTabLayout.setupWithViewPager(mViewPager);         mTabLayout.setTabMode(TabLayout.MODE_FIXED);//設置TabLayout的模式         for (int i = 0; i < mTabLayout.getTabCount(); i++) {             mTabLayout.getTabAt(i).setCustomView(mAdapter.getTabView(i));         }         mTabLayout.addOnTabSelectedListener(this);//設置TabLayout的選中監聽

這里需要注意的就是TabLayout的使用。TabLayou配合ViewPager使用。要用  mTabLayout.setupWithViewPager(mViewPager);使二者聯系起來。另外這里面使用的是customView,當然TabLayout自帶方法也可實現icon+text的效果。也就是效果:TabLayout  + ViewPager 2

根據Tab選中狀態顯示Tab鍵效果

@Override    public void onTabSelected(TabLayout.Tab tab) {        setTabSelectedState(tab);    }     @Override    public void onTabUnselected(TabLayout.Tab tab) {        setTabUnSelectedState(tab);    }      @Override    public void onTabReselected(TabLayout.Tab tab) {     }     private void setTabSelectedState(TabLayout.Tab tab) {        View customView = tab.getCustomView();        TextView tabText = (TextView) customView.findViewById(R.id.tv_tab_text);        ImageView tabIcon = (ImageView) customView.findViewById(R.id.iv_tab_icon);        tabText.setTextColor(ContextCompat.getColor(getActivity(), R.color.colorPrimary));        String s = tabText.getText().toString();        if (getString(R.string.item_home).equals(s)) {            tabIcon.setImageResource(R.drawable.home_fill);        } else if (getString(R.string.item_location).equals(s)) {            tabIcon.setImageResource(R.drawable.location_fill);        } else if (getString(R.string.item_like).equals(s)) {            tabIcon.setImageResource(R.drawable.like_fill);        } else if (getString(R.string.item_person).equals(s)) {            tabIcon.setImageResource(R.drawable.person_fill);        }    }     private void setTabUnSelectedState(TabLayout.Tab tab) {        View customView = tab.getCustomView();        TextView tabText = (TextView) customView.findViewById(R.id.tv_tab_text);        ImageView tabIcon = (ImageView) customView.findViewById(R.id.iv_tab_icon);        tabText.setTextColor(ContextCompat.getColor(getActivity(), R.color.black_1));        String s = tabText.getText().toString();        if (getString(R.string.item_home).equals(s)) {            tabIcon.setImageResource(R.drawable.home);        } else if (getString(R.string.item_location).equals(s)) {            tabIcon.setImageResource(R.drawable.location);        } else if (getString(R.string.item_like).equals(s)) {            tabIcon.setImageResource(R.drawable.like);        } else if (getString(R.string.item_person).equals(s)) {            tabIcon.setImageResource(R.drawable.person);        }    }

這里面不用設置defaultFragment,TabLayout會默認顯示***個;

另外,這里也貼出使用TabLayout自帶方法來實現效果代碼

值得說的是,自帶方法不能自定義icon和text的間距。用起來很方便,但是可能不是你要求的那個尺寸大小。我沒有去深究這里面的源碼。如果有人知道這個自帶方法怎么改變的,也請告知一下。

 mViewPager = (ViewPager) view.findViewById(R.id.view_pager);         mTabLayout = (TabLayout) view.findViewById(R.id.tab_layout);         initTabList();         mAdapter = new TabLayoutFragment2Adapter(getChildFragmentManager(), mTabList, getActivity(), mFragments, mTabImgs);         mViewPager.setAdapter(mAdapter);         mViewPager.setCurrentItem(0);         mTabLayout.setupWithViewPager(mViewPager);         mTabLayout.setTabMode(TabLayout.MODE_FIXED); //        for (int i = 0; i < mTabLayout.getTabCount(); i++) { //            mTabLayout.getTabAt(i).setCustomView(mAdapter.getTabView(i)); //        }         mTabLayout.addOnTabSelectedListener(this); //        mViewPager.setCurrentItem(0);         mTabLayout.getTabAt(0).setIcon(R.drawable.home_fill);//自有方法添加icon         mTabLayout.getTabAt(1).setIcon(R.drawable.location);         mTabLayout.getTabAt(2).setIcon(R.drawable.like);         mTabLayout.getTabAt(3).setIcon(R.drawable.person);

Tab切換

@Override     public void onTabSelected(TabLayout.Tab tab) { //        setTabSelectedState(tab);//這個也無需使用         resetTabIcon();         int position = tab.getPosition();         Log.e("Kevin", "position--->" + position);         switch (position) {             case 0:                 tab.setIcon(R.drawable.home_fill);                 break;             case 1:                 tab.setIcon(R.drawable.location_fill);                 break;             case 2:                 tab.setIcon(R.drawable.like_fill);                 break;             case 3:                 tab.setIcon(R.drawable.person_fill);                 break;          }     }   private void resetTabIcon() {         mTabLayout.getTabAt(0).setIcon(R.drawable.home);         mTabLayout.getTabAt(1).setIcon(R.drawable.location);         mTabLayout.getTabAt(2).setIcon(R.drawable.like);         mTabLayout.getTabAt(3).setIcon(R.drawable.person);     }

到此,關于“Android中如何使用TabLayout+ViewPager實現底部導航欄”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

周宁县| 石林| 天津市| 池州市| 肥乡县| 东辽县| 富蕴县| 巴东县| 尼玛县| 龙江县| 云浮市| 五家渠市| 固镇县| 普安县| 平泉县| 东宁县| 冷水江市| 揭西县| 得荣县| 芒康县| 陇川县| 连州市| 重庆市| 萨嘎县| 浪卡子县| 民权县| 凉城县| 平山县| 永平县| 柞水县| 扬州市| 花莲县| 贵港市| 桓仁| 绩溪县| 思茅市| 兰西县| 宜宾市| 中宁县| 舒城县| 贺州市|