内容简介:项目中会经常用到横向的图文布局,比如下面这些:还有这样的布局,经常出现在设置性的界面:这些布局虽然不难,但是长相类似,频繁出现,每次都要手写这么多代码还是很累的。完全可以自定义一个布局,兼容这些常见的场景,通过对外暴漏一些属性来设置里面的内容。
项目中会经常用到横向的图文布局,比如下面这些:
还有这样的布局,经常出现在设置性的界面:
这些布局虽然不难,但是长相类似,频繁出现,每次都要手写这么多代码还是很累的。完全可以自定义一个布局,兼容这些常见的场景,通过对外暴漏一些属性来设置里面的内容。
实现
于是我自定义了SuperLayout,实现了常见的场景。使用时只需要写一个布局,设置一些属性即可实现效果,能将原先手写的布局代码减少80%左右,大大提高布局的编写效率。
在xml中这样使用:
<com.lxj.androidktx.widget.SuperLayout android:layout_marginLeft="20dp" android:layout_marginRight="20dp" android:paddingLeft="14dp" android:paddingRight="15dp" android:paddingTop="10dp" android:paddingBottom="10dp" android:layout_marginTop="15dp" app:sl_leftImageSrc="@drawable/avatar" app:sl_leftText="头像" app:sl_leftTextColor="#222" app:sl_leftTextSize="18sp" app:sl_rightImageSrc="@mipmap/jt" app:sl_solid="#3EDCE9" app:sl_corner="15dp" app:sl_strokeWidth="2dp" app:sl_stroke="#f00" android:layout_width="match_parent" android:layout_height="wrap_content"/> 复制代码
所有可以设置的属性如下:
<declare-styleable name="SuperLayout"> <attr name="sl_leftImageSrc" format="reference"/> <attr name="sl_leftImageSize" format="dimension"/> <attr name="sl_leftText" format="string"/> <attr name="sl_leftTextColor" format="color"/> <attr name="sl_leftTextSize" format="dimension"/> <attr name="sl_leftTextMarginLeft" format="dimension"/> <attr name="sl_leftTextMarginTop" format="dimension"/> <attr name="sl_leftTextMarginRight" format="dimension"/> <attr name="sl_leftTextMarginBottom" format="dimension"/> <attr name="sl_leftSubText" format="string"/> <attr name="sl_leftSubTextColor" format="color"/> <attr name="sl_leftSubTextSize" format="dimension"/> <attr name="sl_centerText" format="string"/> <attr name="sl_centerTextColor" format="color"/> <attr name="sl_centerTextGravity" format="integer" /> <attr name="sl_centerTextBg" format="reference"/> <attr name="sl_centerTextSize" format="dimension"/> <attr name="sl_rightText" format="string"/> <attr name="sl_rightTextColor" format="color"/> <attr name="sl_rightTextSize" format="dimension"/> <attr name="sl_rightTextBg" format="reference"/> <attr name="sl_rightTextBgColor" format="color"/> <attr name="sl_rightTextVerticalPadding" format="dimension"/> <attr name="sl_rightTextHorizontalPadding" format="dimension"/> <attr name="sl_rightImageSrc" format="reference"/> <attr name="sl_rightImageMarginLeft" format="dimension"/> <attr name="sl_rightImageSize" format="dimension"/> <attr name="sl_rightImage2Src" format="reference"/> <attr name="sl_rightImage2MarginLeft" format="dimension"/> <attr name="sl_rightImage2Size" format="dimension"/> <attr name="sl_solid" format="color"/> <attr name="sl_corner" format="dimension"/> <attr name="sl_stroke" format="color"/> <attr name="sl_strokeWidth" format="dimension"/> <attr name="sl_topLineColor" format="color"/> <attr name="sl_bottomLineColor" format="color"/> <attr name="sl_enableRipple" format="boolean"/> <attr name="sl_rippleColor" format="color"/> </declare-styleable> 复制代码
添加依赖
在使用之前需要先添加依赖,这个类放在了 AndroidKTX
类库中,需要依赖一下:
implementation 'com.lxj:androidktx:1.2.0' //for androidx implementation 'com.lxj:androidktx:1.2.0-x' 复制代码
AndroidKTX包含了一些列非常有用的Kotlin扩展和通用控件,代码不多,个个都很实用。如果你用Kotlin开发,一定不要错过。它的地址是: github.com/li-xiaojun/…
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
深入浅出Node.js
朴灵 / 人民邮电出版社 / 2013-12-1 / CNY 69.00
本书从不同的视角介绍了 Node 内在的特点和结构。由首章Node 介绍为索引,涉及Node 的各个方面,主要内容包含模块机制的揭示、异步I/O 实现原理的展现、异步编程的探讨、内存控制的介绍、二进制数据Buffer 的细节、Node 中的网络编程基础、Node 中的Web 开发、进程间的消息传递、Node 测试以及通过Node 构建产品需要的注意事项。最后的附录介绍了Node 的安装、调试、编码......一起来看看 《深入浅出Node.js》 这本书的介绍吧!