我需要更改按钮的边框高度。这可能吗?
xml:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- This is the line -->
<item android:bottom="-10dp" android:left="-10dp" android:top="1dp">
<shape>
<solid android:color="@android:color/transparent" />
<stroke android:width="1dp" android:color="#323232" />
</shape>
</item>
</layer-list>
在这个xml中提到了android:width="1dp"
。有没有办法给边界的高度?
答案 0 :(得分:0)
我假设你要找的是增加笔画宽度。您当前在按钮周围看到的边框是您使用以下行设置的笔划:
<stroke android:width="1dp" android:color="#323232" />
增加边框高度就像在此处增加android:width
一样简单。例如:
<stroke android:width="5dp" android:color="#323232" />
答案 1 :(得分:0)
您可以使用以下代码调整边框。这取决于 android:width
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- This is the line -->
<item android:bottom="-10dp" android:left="-10dp" android:top="1dp">
<shape>
<solid android:color="@android:color/transparent" />
<stroke android:width="5dp" android:color="#323232" />
</shape>
</item>
</layer-list>
描边中的参数 android:width =&#34; 5dp&#34; 用于指定边框宽度。如果你想在px中使用 android:width =&#34; 5px&#34; 。