怎么在Android中自定义View和TabLayout实现顶部标签滑动效果?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
主布局: fragment_message.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!--
app:tabIndicatorHeight="1dp" 指示器高度
app:tabIndicatorColor="@color/white" 指示器颜色
app:tabMode 默认是fixed:固定的,标签很多时候会被挤压,不能滑动。
scrollable 可滑动伸缩式的
-->
<android.support.design.widget.TabLayout
android:id="@+id/fg_mg_tab"
android:layout_gravity="center"
android:layout_width="match_parent"
android:layout_height="@dimen/toolbar_height"
android:background="@color/colorPrimary"
app:tabIndicatorHeight="@dimen/common_dimension_2"
app:tabMode="fixed"
android:fillViewport="false"
app:tabIndicatorColor="@color/green1"
app:tabTextAppearance="@style/core_IconTabLayout"
app:tabTextColor="@color/white"
/>
<android.support.v4.view.ViewPager
android:id="@+id/fg_mg_viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v4.view.ViewPager>
</LinearLayout>
item布局: item_table_msg.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:gravity="center_vertical"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/iv_msg_tab"
android:src="@drawable/ic_msg_find"
android:scaleType="centerInside"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:layout_marginLeft="@dimen/common_dimension_2"
android:id="@+id/tv_msg_tab"
android:textColor="@color/white"
android:text="会话"
android:textSize="@dimen/SmallerTextSize"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
适配器:MessagePagerAdapter
public class MessagePagerAdapter extends FragmentPagerAdapter {
private final List<Pair<BaseFragment,MsgTabBean>> mFragmentList = new ArrayList<>();
private Context mContext;
public MessagePagerAdapter(Context mContext,FragmentManager fm) {
super(fm);
this.mContext = mContext;
}
public void addFlag(Pair<BaseFragment,MsgTabBean> msgTabBeanPair){
mFragmentList.add(msgTabBeanPair);
}
@Override
public Fragment getItem(int position) {
return mFragmentList.get(position).first;
}
@Override
public int getCount() {
return mFragmentList.size();
}
public View getTabView(int position, ViewGroup mGroup){
View view;
view = LayoutInflater.from(mContext).inflate(R.layout.view_table_msg,mGroup,false);
ImageView img = view.findViewById(R.id.iv_msg_tab);
TextView tv = view.findViewById(R.id.tv_msg_tab);
img.setImageResource(mFragmentList.get(position).second.getResId());
tv.setText(mFragmentList.get(position).second.getTitle());
return view;
}
}
Fragment中进行设置:
mMessagePagerAdapter = new MessagePagerAdapter(getActivity(),getActivity().getSupportFragmentManager());
mMessagePagerAdapter.addFlag(new Pair<>(MsgFragmentFactory.getInstance().getMsgCommListFragment(),new MsgTabBean("通讯录",R.drawable.ic_msg_comm_list)));
mMessagePagerAdapter.addFlag(new Pair<>(MsgFragmentFactory.getInstance().getMsgCrowdFragment(),new MsgTabBean("群聊",R.drawable.ic_msg_crowd)));
mMessagePagerAdapter.addFlag(new Pair<>(MsgFragmentFactory.getInstance().getMsgConverFragment(),new MsgTabBean("消息",R.drawable.ic_msg_conver)));
mMessagePagerAdapter.addFlag(new Pair<>(MsgFragmentFactory.getInstance().getMsgFindFragment(),new MsgTabBean("发现",R.drawable.ic_msg_find)));
mFgMgViewpager.setAdapter(mMessagePagerAdapter);
mFgMgTab.setupWithViewPager(mFgMgViewpager);
for (int index =0 ;index<mMessagePagerAdapter.getCount();index++){
mFgMgTab.getTabAt(index).setCustomView(mMessagePagerAdapter.getTabView(index,mFgMgTab));
}
mFgMgViewpager.setOffscreenPageLimit(mMessagePagerAdapter.getCount());
mFgMgViewpager.setCurrentItem(3);
}
关于怎么在Android中自定义View和TabLayout实现顶部标签滑动效果问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注亿速云行业资讯频道了解更多相关知识。
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。