Android Studio XML需要Layout_Height和Layout_Width

时间:2015-02-06 22:50:42

标签: android xml

我在搜索具有良好图形的按钮时找到了这段代码,

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<corners
android:radius="100dp"
/>
<gradient
android:angle="45"
android:centerX="35%"
android:centerColor="#7995A8"
android:startColor="#E8E8E8"
android:endColor="#000000"
android:type="linear"
/>
<padding
android:left="0dp"
android:top="0dp"
android:right="0dp"
android:bottom="0dp"
/>
<size
android:width="270dp"
android:height="60dp"
/>
<stroke
android:width="3dp"
android:color="#878787"
/>
</shape>
然而,当我将它复制粘贴到android studio中的xml文件时,它显示并显示错误,“元素形状没有必需的属性android:layout_height”而另一个错误为“元素形状没有必需的属性android :layout_width“

我尝试设置android:layout_width =“”和android:layout_heigth“” 和android:layout_width“wrap_content”,android:layout_heigth =“wrap_content”,错误消失了,但我无法设置任何按钮,因为它的背景...所以我不能这样使用这个xml。 / p>

我应该将它们设置为什么?

1 个答案:

答案 0 :(得分:2)

android:layout_width没有android:layout_height<shape>属性,因为<shape>不会放在您尝试放置它的布局资源中。 <shape>位于可绘制资源中,例如项目中的res/drawable/

This sample project演示了<shape>可绘制资源的使用。您将看到<shape>元素位于res/drawable/目录中。

您还可以在the documentation中了解有关<shape>可绘制资源的更多信息。