参考微信,简单封装了一个item控件,github地址:https://github.com/SolveBugs
并且昨天折腾了下将库上传到了JCenter远程仓库,方便以后的使用,效果图如下:
添加依赖
在build文件添加依赖:
dependencies {
compile 'com.zq.commonitemlib:commonitemmoudle:1.0.1'
}
在xml中引用:
<demo.zq.com.commonitemmoudle.CommonItem1
app:arrow_item="@drawable/right" //右边指示图片
app:background_item="@color/RGB_FFFFFF"//条目背景颜色
app:img_item="@drawable/setting_blue" //右边图片icon
app:text_item="@string/setting" //右边文字
app:textcolor_item="@color/RGB_000000" //文字颜色
app:textsize_item="@dimen/normalsize" //文字大小
android:layout_width="match_parent"
android:layout_height="wrap_content"></demo.zq.com.commonitemmoudle.CommonItem1>