android使用Tab效果滑动

android使用Tab效果滑动

使用SlidingTabLayout

这是android L最新的使用tab的效果,Google Play的应用
教程:Google Play Style Tabs using SlidingTabLayout,挺详细的教程
通过这篇:SlidingTabLayout的使用--替代ActionBar的Tab导航,可以知道

  • 样式:直接在xml上的SlidingTabLayout上改,他是继承HorizontalScrollView的,可以通过background来设置颜色
  • 加入custom_tab.xml的时候,是代表tab使用图标
  • tab中的字体颜色,参考这里:Custom selected tab text color in SlidingTabLayout
  • 改下划线的颜色:
    第一种方式:
slidingTabLayout.setSelectedIndicatorColors(getResources().getColor(R.color.tab_text_color));

第二种方式

slidingTabLayout.setCustomTabColorizer(new SlidingTabLayout.TabColorizer(){
            @Override
            public int getIndicatorColor(int position) {
                return Color.WHITE;
            }
        });
  • 想改Tab点击的效果,发现slidingTabLayoutcreateDefaultTabView方法,是根据设定的Theme来进行改变的。
  • 如何使用在Fragment中的静态方法newInstance传递数据呢
    思路:通过Bundle进行传递,在oncreate方法中使用getArguments()方法得到,另一种方式是通过fragment.title的方式来改变成员变量的值
  public  static  final String BG_PAGE="BgManagerFragment";
    public  static  final String FRAGMENT_TITLE="tilte";
    private int mPage;
    private String title;
    public BgManagerFragment() {
        // Required empty public constructor
    }
    public static BgManagerFragment newInstance(String title,int page){
        Bundle args = new Bundle();
        args.putInt(BG_PAGE, page);
        args.putString(FRAGMENT_TITLE, title);
        BgManagerFragment fragment = new BgManagerFragment();
        fragment.setArguments(args);
        return fragment;
    }

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        mPage=getArguments().getInt(BG_PAGE);//在newInstance方法中通过Bundle进行传递值
        title=getArguments().getString(FRAGMENT_TITLE);
    }

另一种,只列出newInstance()方法

public static BgManagerFragment newInstance(String title,int page){
    BgManagerFragment fragment = new BgManagerFragment();
    fragment.title=title;
    fragment.mPage=page;
    return  fragment;
}
  • 如何让不同的fragment加载不同数据,进行不同的显示。通过别人的案例,可以知道需要对adapterFragment进行修改

添加图标到tab

private int[] imageResId = {
        R.drawable.ic_one,
        R.drawable.ic_two,
        R.drawable.ic_three
}; 
 
// ... 
 
@Override 
public CharSequence getPageTitle(int position) {
    // Generate title based on item position 
    // return tabTitles[position]; 
    Drawable image = context.getResources().getDrawable(imageResId[position]);
    image.setBounds(0, 0, image.getIntrinsicWidth(), image.getIntrinsicHeight());
    SpannableString sb = new SpannableString(" ");
    ImageSpan imageSpan = new ImageSpan(image, ImageSpan.ALIGN_BOTTOM);
    sb.setSpan(imageSpan, 0, 1, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
    return sb;
} 

注意

但是由于SlidingTabLayout自带的TextView会调用 setAllCaps(true),会取消所有的 ImageSpan 的效果。所以需要自定义TabView

接着:
tab.setViewPager(pager) 之前调用 tab.setCustomTabView(R.layout.custom_tab,0) 设置自定义TabView。

tab.setCustomTabView(R.layout.custom_tab,0);
tab.setViewPager(pager);

如果要每个TabView都平分屏幕宽度,只需在自定义的TextView 上加上权重属性即可;

android:layout_weight="1"  

通过以上方式,是实现了显示图标,但是selector的效果完全没有了,那么如何解决?

参考:ADeveloper: Add Icons to SlidingTabLayout instead of Text的答案5.
和这个Add Icons to SlidingTabLayout instead of Text,只有三个赞成的答案,得到启发。

第一种解决方式:

按照stackoverflow来,就可以解决了
第一步:修改适配器FragmentPagerAdapter

public class ClubMemberManagerAdapter extends FragmentPagerAdapter {
private int[] imageResId = {R.drawable.tab_select_home,R.drawable.tab_select_act,R.drawable.tab_select_data};
//添加一个获取资源的方法
public int getDrawableId(int position){
    //Here is only example for getting tab drawables
    return imageResId[position];
}
//下面这个方法,是为了不让字体消失出来
@Override
public CharSequence getPageTitle(int position) {
   Drawable image = context.getResources().getDrawable(imageResId[position]);
    image.setBounds(0, 0, image.getIntrinsicWidth(), image.getIntrinsicHeight());
    SpannableString sb = new SpannableString(" ");
    ImageSpan imageSpan = new ImageSpan(image, ImageSpan.ALIGN_BOTTOM);
    sb.setSpan(imageSpan, 0, 1, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
    return sb;
}

第二步:
那么相应的加载SlidingTabLayoutActivity/fragment就不需要这句

//slidingTabLayout.setCustomTabView(R.layout.custom_tab, 0);

第三步:
修改SlidingTabLayoutpopulateTabStrip()方法

private void populateTabStrip() {
    //强制转换成ClubMemberManagerAdapter,为了得到ClubMemberManagerAdapter下的得到资源的方法:getDrawableId
    final ClubMemberManagerAdapter adapter = (ClubMemberManagerAdapter)mViewPager.getAdapter();
    final OnClickListener tabClickListener = new TabClickListener();

    for (int i = 0; i < adapter.getCount(); i++) {
        View tabView = null;
        TextView tabTitleView = null;
        if (mTabViewLayoutId != 0) {
            tabView = LayoutInflater.from(getContext()).inflate(mTabViewLayoutId, mTabStrip,
                    false);
            tabTitleView = (TextView) tabView.findViewById(mTabViewTextViewId);
        }
        if (tabView == null) {
            //默认是生成TextView
            tabView = createDefaultTabView(getContext());
        }
        if (tabImageView == null && TextView.class.isInstance(tabView)) {
            //这里依然是TextView.class.的判断父系
            tabImageView = (ImageView) tabView;
        }
        if (mDistributeEvenly) {
            LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) tabView.getLayoutParams();
            lp.width = 0;
            lp.weight = 1;
        }                     
        tabTitleView.setCompoundDrawablesWithIntrinsicBounds(0,adapter.getDrawableId(i), 0, 0);
        //上面这句是TexView加载资源的方式,参数为(左,上,右,下)
        tabTitleView.setText(adapter.getPageTitle(i));
        tabTitleView.setTextColor(Color.WHITE);
        tabView.setOnClickListener(tabClickListener);
        String desc = mContentDescriptions.get(i, null);
        if (desc != null) {
            tabView.setContentDescription(desc);
        }
        mTabStrip.addView(tabView);
        if (i == mViewPager.getCurrentItem()) {
            tabView.setSelected(true);
        }
    }
}

通过上面的配置会发现,图标的selector效果有了,但是毕竟是TextView,虽然没有字体,但还是会继续占位置,效果依然不理想。所以...

第二种解决方式:直接将TextView改成ImageView便可以。

第一步:同理,依然需要资源

public class ClubMemberManagerAdapter extends FragmentPagerAdapter {
public int getDrawableId(int position){
    //Here is only example for getting tab drawables
    return imageResId[position];//图标资源
}
@Override
public CharSequence getPageTitle(int position) {
    return tabTitles[position];//使用imageview,这个只是一个摆设而已
}
}

第二步,依然是修改SlidingTabLayout的方法populateTabStrip

private void populateTabStrip() {
   //强制转换成ClubMemberManagerAdapter,为了得到ClubMemberManagerAdapter下的得到资源的方法:getDrawableId
   final ClubMemberManagerAdapter adapter = (ClubMemberManagerAdapter)mViewPager.getAdapter();
   final OnClickListener tabClickListener = new TabClickListener();

   for (int i = 0; i < adapter.getCount(); i++) {
       View tabView = null;
       ImageView tabImageView = null;

       if (mTabViewLayoutId != 0) {
           // If there is a custom tab view layout id set, try and inflate it
           tabView = LayoutInflater.from(getContext()).inflate(mTabViewLayoutId, mTabStrip,
                   false);
           tabImageView = (ImageView) tabView.findViewById(mTabViewTextViewId);
       }

       if (tabView == null) {
           //改成ImageView生成方式
           tabView = createImageViewTabView(getContext());
       }

       if (tabImageView == null && ImageView.class.isInstance(tabView)) {
           //这里是ImageView.class.的判断父系,因为改成ImageView的生成方式
           tabImageView = (ImageView) tabView;
       }

       if (mDistributeEvenly) {
           LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) tabView.getLayoutParams();
           lp.width = 0;
           lp.weight = 1;
       }
       //加载图标资源
       tabImageView.setImageResource(adapter.getDrawableId(i));
       tabView.setOnClickListener(tabClickListener);
       String desc = mContentDescriptions.get(i, null);
       if (desc != null) {
           tabView.setContentDescription(desc);
       }

       mTabStrip.addView(tabView);
       if (i == mViewPager.getCurrentItem()) {
           tabView.setSelected(true);
       }
   }
}

第三步,就是方法createImageViewTabView是怎么实现的呢

protected ImageView createImageViewTabView(Context context){
    ImageView imageView = new ImageView(context);
    imageView.setLayoutParams(new LinearLayout.LayoutParams(
            ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT));

    TypedValue outValue = new TypedValue();
    getContext().getTheme().resolveAttribute(android.R.attr.selectableItemBackground,
            outValue, true);//使用系统的主题
    imageView.setBackgroundResource(outValue.resourceId);

    int padding = (int) (TAB_VIEW_PADDING_DIPS * getResources().getDisplayMetrics().density);
    imageView.setPadding(padding, padding, padding, padding);

    return imageView;
}

改成这种imageview后,感觉已经将SlidingTabLayout改成了自能加载ImageView的类了。

用另一种的实现

Sliding Tabs with PagerSlidingTabStrip

Fragment上使用Tab

参考:ActionBar Tabs with Fragments

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,590评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,808评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,151评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,779评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,773评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,656评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,022评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,678评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,038评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,756评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,411评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,005评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,973评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,053评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,495评论 2 343

推荐阅读更多精彩内容