如何更改相对布局边框颜色?这是我的代码下面我只想显示黑色的边框颜色,但显示所有相对布局黑色。我只是想显示相对布局白色只有borde将是黑色我将做什么??
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/border5">
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="#000000" />
</shape>
</item>
<item android:left="1dp" android:top="1dp" android:bottom="2dp" >
<shape android:shape="rectangle">
</shape>
</item>
</layer-list>
答案 0 :(得分:18)
这就是我给我一个白色的background
和橙色边框
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<solid android:color="@drawable/white" />
<stroke
android:width="3px"
android:color="@drawable/orange" />
</shape>
如果你只是想要一个边框,那么你可以将它全部保存在同一个<shape>
中,并使用<solid...>
作为background
颜色(如果你想给它一个)和{ {1}}为边框。
您可以如何操作它只需将<stroke...>
更改为您想要的<solid>
颜色,并添加background
黑色