Android.Views.InflateException:使用自定义按钮选择器使类android.widget.Button膨胀错误

时间:2017-03-18 22:06:08

标签: c# android xamarin

我在我正在处理的另一个项目上遇到了一些问题,所以我创建了一个新项目,看看我是否遇到了同样的错误,我就是这样。

我在 main.axml 中创建了一个按钮,我正在尝试使用 somestyle.xml 设置样式。

somestyle.xml:

 <?xml version="1.0" encoding="utf-8" ?>
 <selector xmlns:android="http://schemas.android.com/apk/res/android">

  <!-- What to do when the button is NOT pressed -->
  <item android:state_pressed="false">

    <layer-list>
      <item android:right="5dp" android:top="5dp">

        <!-- Shape the button -->
        <corners android:radius="20dp"/>
        <solid android:color="#d13838"/>

      </item>


      <item android:bottom="2dp" android:left="2dp">
        <shape>
          <gradient android:angle="270" android:endColor="#d13838" android:startColor="#d13838"/>
          <stroke android:width="1dp" android:color="#d13838"/>
          <corners android:radius="4dp"/>
          <padding android:bottom="0dp" android:left="10dp" android:right="10dp" android="10dp"/>
        </shape>
      </item>
    </layer-list>

  </item>

</selector>

我收到一堆警告: enter image description here

但是,应用程序构建但在

上抛出异常
  

//从“主要”布局资源

设置我们的视图      

SetContentView(Resource.Layout.Main);

MainActivity.cs

中的

Unhandled Exception:

Android.Views.InflateException: Binary XML file line #1: Binary XML file line #1: Error inflating class android.widget.Button occurred 

Main.axml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <Button
        android:id="@+id/btn"
        android:text="Btn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:background="@drawable/somestyle" />
</LinearLayout>

MainActiviy.cs:

using Android.App;
using Android.Widget;
using Android.OS;

namespace TestNamespaceBug
{
    [Activity(Label = "TestNamespaceBug", MainLauncher = true, Icon = "@drawable/icon")]
    public class MainActivity : Activity
    {
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            // Set our view from the "main" layout resource
            SetContentView (Resource.Layout.Main);
        }
    }
}

我无法弄清楚导致所有警告+异常的原因。非常感谢有关如何解决这个问题的任何建议。

0 个答案:

没有答案