国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 系統(tǒng) > Android > 正文

TabLayout實(shí)現(xiàn)ViewPager指示器的方法

2019-10-22 18:09:45
字體:
供稿:網(wǎng)友

在TabLayout出現(xiàn)之前,基本都是通過 ViewPager+FragmentPagerAdapter+第三方開源tab指示器(TabPageIndicator)來實(shí)現(xiàn)的。現(xiàn)在Android內(nèi)部提供了現(xiàn)成的TabLayout控件來實(shí)現(xiàn)ViewPager指示器的效果。

先看效果圖:

TabLayout,ViewPager,指示器

導(dǎo)入依賴

在Gradle文件中導(dǎo)入依賴,代碼如下:

compile 'com.android.support:design:23.4.0'

TabLayout類就在這個(gè)依賴包中定義的。

布局文件中使用

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context="tech.czh.example.MainActivity"> <android.support.design.widget.TabLayout  android:id="@+id/tablayout"  android:layout_width="match_parent"  android:layout_height="50dp"  android:layout_gravity="top"/> <android.support.v4.view.ViewPager  android:id="@+id/viewpager"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:background="@android:color/white"> </android.support.v4.view.ViewPager></LinearLayout>

在LinearLayout中使用TabLayout標(biāo)簽和ViewPager標(biāo)簽。

Activity代碼編寫

public class MainActivity extends AppCompatActivity{ public static final String[] tabTitles =   new String[]{"短信1","短信2","短信3","短信4","短信5","短信6","短信7","短信8","短信9"}; private TabLayout mTabLayout; private ViewPager mViewPager; private List<SingleFragment> mFragments = new ArrayList<SingleFragment>(); @Override protected void onCreate(Bundle savedInstanceState) {  super.onCreate(savedInstanceState);  setContentView(R.layout.activity_main);  initViews(); } private void initViews() {  mTabLayout = (TabLayout) findViewById(R.id.tablayout);  mViewPager = (ViewPager) findViewById(R.id.viewpager);  for(int i = 0; i < tabTitles.length; i++)  {   mFragments.add(SingleFragment.createFragment(tabTitles[i]));  }  //為ViewPager設(shè)置FragmentPagerAdapter  mViewPager.setAdapter(new FragmentPagerAdapter(getSupportFragmentManager())  {   @Override   public Fragment getItem(int position)   {    return mFragments.get(position);   }   @Override   public int getCount()   {    return mFragments.size();   }   /**    * 為TabLayout中每一個(gè)tab設(shè)置標(biāo)題    */   @Override   public CharSequence getPageTitle(int position)   {    return tabTitles[position];   }  });  //TabLaout和ViewPager進(jìn)行關(guān)聯(lián)  mTabLayout.setupWithViewPager(mViewPager);  //防止tab太多,都擁擠在一起  mTabLayout.setTabMode(TabLayout.MODE_SCROLLABLE); }}

大部分功能都在initViews()方法中實(shí)現(xiàn),大致講解一下:第23,24行獲得TabLayout和ViewPager控件實(shí)例;26~29行創(chuàng)建了需要的Fragment實(shí)例,并保存在mFragments列表中。第32行,為ViewPager設(shè)置FragmentPagerAdapter,并通過getSupportFragmentManager()方法將FragmentManager傳遞給FragmentPagerAdapter。第50行,getPageTitle()回調(diào)函數(shù),來為TabLayout中的Tab設(shè)置標(biāo)題。第57行,將TabLayout和ViewPager進(jìn)行關(guān)聯(lián)。最后,設(shè)置了TabLayout的模式,TabLayout.MODE_SCROLLABLE表示TabLayout可以滑動(dòng),這樣就可以防止過多的Tab擁擠在一屏內(nèi)。

Fragment代碼編寫

public class SingleFragment extends Fragment{ public static final String ARGUMENT = "ARGUMENT"; @Nullable @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {  Bundle bundle = getArguments();  String text = "";  if(bundle != null) {   text = bundle.getString(ARGUMENT);  }  TextView tv = new TextView(getActivity());  tv.setText(text);  tv.setTextSize(TypedValue.COMPLEX_UNIT_SP, 22);  tv.setGravity(Gravity.CENTER);  return tv; } public static SingleFragment createFragment(String argument) {  Bundle bundle = new Bundle();  bundle.putString(ARGUMENT, argument);  SingleFragment fragment = new SingleFragment();  fragment.setArguments(bundle);  return fragment; }}

Fragment的UI控件很簡(jiǎn)單,僅僅包含一個(gè)TextView。外部通過靜態(tài)方法createFragment()用來創(chuàng)建Fragment實(shí)例,并且可以傳遞參數(shù),傳遞的參數(shù)將設(shè)置到TextView中。

OK,至此TabLayout就可以正常使用了,效果就為文章開始貼的gif圖。

另外,TabLayout還提供了很多自定義屬性,讓我們自定義Tab的樣式。

示例代碼:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context="tech.czh.example.MainActivity"> <android.support.design.widget.TabLayout  android:id="@+id/tablayout"  android:layout_width="match_parent"  android:layout_height="50dp"  android:layout_gravity="top"  app:tabTextColor="@color/colorPrimary"  app:tabSelectedTextColor="@color/colorAccent"  app:tabIndicatorColor="@color/colorAccent"  app:tabIndicatorHeight="5dp"/> <android.support.v4.view.ViewPager  android:id="@+id/viewpager"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:background="@android:color/white"> </android.support.v4.view.ViewPager></LinearLayout>

這里我們使用一些屬性,比如:tabTextColor用來設(shè)置Tab中文字顏色; 
tabSelectedTextColor用來設(shè)置Tab被選中時(shí)文字顏色;tabIndicatorColor用來設(shè)置指示器顏色;tabIndicatorHeight用來設(shè)置指示器的高度。

最后,看一下效果:

TabLayout,ViewPager,指示器

好的,TabLayout的使用就說這么多。可以看出TabLayout使用起來還是很方便的,并且最終效果也很nice。

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持VEVB武林網(wǎng)。


注:相關(guān)教程知識(shí)閱讀請(qǐng)移步到Android開發(fā)頻道。
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 大厂| 榆中县| 合水县| 河西区| 浦城县| 探索| 旬邑县| 烟台市| 丹江口市| 广平县| 朝阳市| 阳东县| 雅安市| 成都市| 吴桥县| 缙云县| 平山县| 澄江县| 长泰县| 北京市| 慈利县| 涿州市| 江陵县| 宁蒗| 天长市| 阿克苏市| 商丘市| 特克斯县| 徐闻县| 溧阳市| 洪雅县| 平南县| 沙洋县| 福海县| 南京市| 普兰店市| 信宜市| 潍坊市| 罗源县| 彭州市| 扶绥县|