亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

Android TabLayout(選項(xiàng)卡布局)簡(jiǎn)單用法實(shí)例分析

 更新時(shí)間:2016年01月13日 14:41:57   作者:chenguang79  
這篇文章主要介紹了Android TabLayout(選項(xiàng)卡布局)簡(jiǎn)單用法,結(jié)合實(shí)例形式簡(jiǎn)單分析了Android選項(xiàng)卡布局的界面布局與功能實(shí)現(xiàn)具體相關(guān)技巧,需要的朋友可以參考下

本文實(shí)例講述了Android TabLayout(選項(xiàng)卡布局)簡(jiǎn)單用法。分享給大家供大家參考,具體如下:

我們?cè)趹?yīng)用viewpager的時(shí)候,經(jīng)常會(huì)使用TabPageIndicator來(lái)與其配合。達(dá)到很漂亮的效果。但是TabPageIndicator是第三方的,而且比較老了,當(dāng)然了現(xiàn)在很多大神都已經(jīng)開(kāi)始自己寫TabPageIndicator來(lái)滿足自己的需求,在2015年的google大會(huì)上,google發(fā)布了新的Android Support Design庫(kù),里面包含了幾個(gè)新的控件,其中就有一個(gè)TabLayout,它就可以完成TabPageIndicator的效果,而且還是官方的,最好的是它可以兼容到2.2以上版本,包括2.2。下面我就舉一個(gè)簡(jiǎn)單的例子來(lái)使用它。

這里使用的 android studio進(jìn)行開(kāi)發(fā)的,所以引用TabLayout很簡(jiǎn)單,只要在build.gradle中加入compile 'com.android.support:design:22.2.0'即可。

這個(gè)使用是我在仿 知乎 的時(shí)候使用。所以頁(yè)面就和知乎很像了

fragment_find.xml

<LinearLayout 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"
  android:orientation="vertical">
  <android.support.design.widget.TabLayout
    android:id="@+id/tab_FindFragment_title"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/titleBlue"
    app:tabIndicatorColor="@color/white"
    app:tabSelectedTextColor="@color/gray"
    app:tabTextColor="@color/white"
    />
  <android.support.v4.view.ViewPager
    android:id="@+id/vp_FindFragment_pager"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    />
</LinearLayout>

這里面沒(méi)有什么特別的,就是添加了一個(gè)TabLayout和Viewpager作為上下的布局。其中

app:tabIndicatorColor="@color/white" // 下方滾動(dòng)的下劃線顏色
app:tabSelectedTextColor="@color/gray" // tab被選中后,文字的顏色
app:tabTextColor="@color/white" // tab默認(rèn)的文字顏色

Find_tab_Adapter.java  它是viewpager的Adapter,因?yàn)檫@里面我每個(gè)欄目下,都會(huì)有一些列表,所以采用list<View>的方式,在里面切換layout不太適合,所以我采用了List<Fragment>來(lái)直接加載多個(gè)fragment

package com.example.cg.myzhihu.Adapters;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import java.util.List;
/**
 * Created by cg on 2015/9/26.
 */
public class Find_tab_Adapter extends FragmentPagerAdapter {
  private List<Fragment> list_fragment; //fragment列表
  private List<String> list_Title; //tab名的列表
  public Find_tab_Adapter(FragmentManager fm,List<Fragment> list_fragment,List<String> list_Title) {
    super(fm);
    this.list_fragment = list_fragment;
    this.list_Title = list_Title;
  }
  @Override
  public Fragment getItem(int position) {
    return list_fragment.get(position);
  }
  @Override
  public int getCount() {
    return list_Title.size();
  }
  //此方法用來(lái)顯示tab上的名字
  @Override
  public CharSequence getPageTitle(int position) {
    return list_Title.get(position % list_Title.size());
  }
}

FindFragment.java這個(gè)的說(shuō)法,全在標(biāo)注里面了

package com.example.cg.myzhihu;
import android.os.Bundle;
import android.support.design.widget.TabLayout;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.view.ViewPager;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.example.cg.myzhihu.Adapters.Find_tab_Adapter;
import java.util.ArrayList;
import java.util.List;
/**
 * 發(fā)現(xiàn)頁(yè)面
 */
public class FindFragment extends Fragment {
  private TabLayout tab_FindFragment_title; //定義TabLayout
  private ViewPager vp_FindFragment_pager; //定義viewPager
  private FragmentPagerAdapter fAdapter; //定義adapter
  private List<Fragment> list_fragment; //定義要裝fragment的列表
  private List<String> list_title; //tab名稱列表
  private Find_hotRecommendFragment hotRecommendFragment; //熱門推薦fragment
  private Find_hotCollectionFragment hotCollectionFragment; //熱門收藏fragment
  private Find_hotMonthFragment hotMonthFragment; //本月熱榜fragment
  private Find_hotToday hotToday; //今日熱榜fragment
  @Override
  public View onCreateView(LayoutInflater inflater, ViewGroup container,
               Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.fragment_find, container, false);
    initControls(view);
    return view;
  }
  /**
   * 初始化各控件
   * @param view
   */
  private void initControls(View view) {
    tab_FindFragment_title = (TabLayout)view.findViewById(R.id.tab_FindFragment_title);
    vp_FindFragment_pager = (ViewPager)view.findViewById(R.id.vp_FindFragment_pager);
    //初始化各fragment
    hotRecommendFragment = new Find_hotRecommendFragment();
    hotCollectionFragment = new Find_hotCollectionFragment();
    hotMonthFragment = new Find_hotMonthFragment();
    hotToday = new Find_hotToday();
    //將fragment裝進(jìn)列表中
    list_fragment = new ArrayList<>();
    list_fragment.add(hotRecommendFragment);
    list_fragment.add(hotCollectionFragment);
    list_fragment.add(hotMonthFragment);
    list_fragment.add(hotToday);
    //將名稱加載tab名字列表,正常情況下,我們應(yīng)該在values/arrays.xml中進(jìn)行定義然后調(diào)用
    list_title = new ArrayList<>();
    list_title.add("熱門推薦");
    list_title.add("熱門收藏");
    list_title.add("本月熱榜");
    list_title.add("今日熱榜");
    //設(shè)置TabLayout的模式
    tab_FindFragment_title.setTabMode(TabLayout.MODE_FIXED);
    //為TabLayout添加tab名稱
    tab_FindFragment_title.addTab(tab_FindFragment_title.newTab().setText(list_title.get(0)));
    tab_FindFragment_title.addTab(tab_FindFragment_title.newTab().setText(list_title.get(1)));
    tab_FindFragment_title.addTab(tab_FindFragment_title.newTab().setText(list_title.get(2)));
    tab_FindFragment_title.addTab(tab_FindFragment_title.newTab().setText(list_title.get(3)));
    fAdapter = new Find_tab_Adapter(getActivity().getSupportFragmentManager(),list_fragment,list_title);
    //viewpager加載adapter
    vp_FindFragment_pager.setAdapter(fAdapter);
    //tab_FindFragment_title.setViewPager(vp_FindFragment_pager);
    //TabLayout加載viewpager
    tab_FindFragment_title.setupWithViewPager(vp_FindFragment_pager);
    //tab_FindFragment_title.set
  }
}

效果圖,不太會(huì)做成動(dòng)態(tài)的:

希望本文所述對(duì)大家Android程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論