按钮选择器错误

时间:2016-07-10 05:19:13

标签: android android-studio button

我尝试在Android Studio上创建按钮选择器时收到错误。 编译器在此行<item android:drawable="@drawable/button_design"

上显示红色感叹号

这里是button_selector.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
   <item android:drawable="@drawable/button_design"
       android:state_pressed="true"
       />
</selector>

这里是button_design.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
      <gradient
          android:startColor="#29B6F6"
          android:endColor="#0288D1"
          android:angle="90"
          android:type="linear"
    />
      <corners
          android:radius="5dp"
          />
    <stroke
        android:color="#FFFFFF"
        android:width="3dp"
     />
</shape>

1 个答案:

答案 0 :(得分:0)

检查图像是否与运行的模拟器位于不同的版本文件夹中。

that is the problem of occuring a error

将图像粘贴到可绘制文件夹中,而不是任何可绘制版本文件夹。