欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android TitleBar推荐

程序员文章站 2023-10-26 20:09:22
版权声明:本文为xing_star原创文章,转载请注明出处! 本文同步自http://javaexception.com/archives/206 Android TitleBar推荐 版权声明:本文为xing_star原创文章,转载请注明出处! 本文同步自http://javaexception. ......

版权声明:本文为xing_star原创文章,转载请注明出处!

本文同步自

android titlebar推荐

这段时间在帮别人写一个app,为了加快进度,就引入了一些开源库,其中一个是titlebar,github上的地址是  https://github.com/loperseven/titlebar , slogan是满足各种日常使用的标题栏,不要让你的时间浪费在写标题栏上。听起来很不错。
 
在build.gradle里面引入远程依赖
implementation 'com.github.loperseven:titlebar:1.0.3'
 
在activity或者是fragment的xml布局里面只需要使用titlebar就可以了,如<com.loper7.layout.titlebar
android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    tl:tbackgroundcolor="@color/colorprimary"
    tl:ttitletext="活动"
    tl:ttitletextcolor="@color/black"
    tl:tcentertitle="true"
    tl:ttitletextbold="true"
    tl:ttitletextsize="18sp" />

 

上面基本上默认的配置,如果需要设置左边的返回箭头,可以使用tbackimage来设置箭头图标。
其他的属性用法,可以参考文档或者是源码,比较简单。
这样后续就不用重复的写titlebar了。