简书 android底部导航,使用recyclerView封装底部导航栏

48f0f8397663?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

image

使用如下:

Add it in your root build.gradle at the end of repositories:

maven { url 'https://jitpack.io' }

Add the dependency

implementation 'com.github.ALguojian:BottomLayout:1.1'

添加xml

android:id="@+id/bottomLayout"

android:layout_width="match_parent"

android:layout_height="50dp" />

添加资源文件

BottomLayout bottomLayout = findViewById(R.id.bottomLayout);

ArrayList strings = new ArrayList<>();

strings.add("首页");

strings.add("推广");

strings.add("个人中心");

bottomLayout.setTexts(strings);

//选中时图片的背景,drawable-selected资源文件

ArrayList images = new ArrayList<>();

images.add(R.drawable.weex_select_home_background_one);

images.add(R.drawable.weex_select_home_background_two);

images.add(R.drawable.weex_select_home_background_three);

bottomLayout.setImages(images);

//添加字体选中时以及未选中时字体颜色

bottomLayout.setTextColor(R.color.colorAccent, R.color.colorPrimaryDark);

/**

* 设置字体大小,单位sp,默认是11sp

*/

bottomLayout.setTextSize(14);

//点击的回调

bottomLayout.build(position -> System.out.println("=======点击了第" + position + "个"));

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值