找到好多人的,都是文章随便copy,自己都不验证下,特别说linearLayout中可以设置他的divIDer属性的,我在AndroID Studio中试了,根本显示不出来,这边是csdn上一个朋友回答的,我收藏了,放到这里,后面备用。
1.定一个underline的xml文件,把它放到drawable下
underline.xml
@H_301_6@<?xml version="1.0" enCoding="UTF-8"?><@R_722_3419@ xmlns:androID="http://schemas.androID.com/apk/res/androID" > <!-- 连框颜色值 --> <item> <shape> <solID androID:color="#dddddd" /> </shape> </item> <!-- 主体背景颜色值 --> <item androID:bottom="1dp"> <!--设置只有底部有边框--> <shape> <solID androID:color="#ffffff" /> </shape> </item></@R_722_3419@>
2.然后在linearLayout中引用该布局。就会出现下边框
@H_301_6@<linearLayout androID:orIEntation="horizontal" androID:layout_wIDth="match_parent" androID:layout_marginRight="5dp" androID:layout_marginleft="5dp" androID:paddingBottom="5dp" androID:paddingtop="5dp" androID:paddingRight="5dp" androID:background="@drawable/linearlayout_underline" androID:layout_height="wrap_content"> <TextVIEw androID:text="余额:5611.19元" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:textcolor="@color/red_Font" androID:textSize="18dp" androID:ID="@+ID/member_balance" androID:layout_weight="1" androID:textAlignment="textEnd"/> </linearLayout>
3.实现的效果图如下:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。
总结以上是内存溢出为你收集整理的Android使用LinearLayout设置边框全部内容,希望文章能够帮你解决Android使用LinearLayout设置边框所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)