怎么给android 设置边框
3个回答
展开全部
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid
android:color="#00000000"/>
<corners
android:bottomRightRadius="5dip"
android:bottomLeftRadius="5dip"
android:topLeftRadius="5dip"
android:topRightRadius="5dip"/>
<stroke
android:width="0.5px"
android:color="#505050"/>
</shape>
</item>
</layer-list>
在drawable文件夹中新建一个这样的border_style.xml的文件,然后在你想要修改的组件中添加android:background="@drawable/text_border"。我写的这个xml文件就是一个圆角边框的样式,你可以根据自己需要修改里面的参数。
手工编辑,望采纳!
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid
android:color="#00000000"/>
<corners
android:bottomRightRadius="5dip"
android:bottomLeftRadius="5dip"
android:topLeftRadius="5dip"
android:topRightRadius="5dip"/>
<stroke
android:width="0.5px"
android:color="#505050"/>
</shape>
</item>
</layer-list>
在drawable文件夹中新建一个这样的border_style.xml的文件,然后在你想要修改的组件中添加android:background="@drawable/text_border"。我写的这个xml文件就是一个圆角边框的样式,你可以根据自己需要修改里面的参数。
手工编辑,望采纳!
展开全部
边框主要是使用shape文件,可以定制左右上下的边框,如果想要隐藏某部分,设置我透明即可。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
重写textview或添加一个带边框的背景
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询