还要这个<item android:width="30dp" android:height="30dp"> <shape android:shape="rectangle"> <solid android:color="#ff666666" /> </shape> </item>加在中间
时间: 2023-07-19 13:03:48 浏览: 168
android中shape的使用
如果您想在布局中添加一个30dp x 30dp的矩形,可以使用以下代码:
```
<View
android:layout_width="30dp"
android:layout_height="30dp"
android:background="@drawable/custom_background" />
```
然后,在drawable文件夹中创建一个名为custom_background的XML文件,并将以下内容添加到该文件中:
```
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#ff666666" />
</shape>
```
这将创建一个灰色矩形作为视图的背景。您可以根据需要更改颜色或其他属性。
阅读全文