我是Xamarin中的NewBie。我从Nuget软件包管理器安装了Android.Support.V7.App库,并且项目构建成功。现在,当我扩展AppCompatActivity而不是Activity时,我正在获取异常:-

 Android.Content.Res.Resources+NotFoundException: Resource ID #0x7f030015


我的活动代码如下:

  using Android.App;
  using Android.Widget;
  using Android.OS;
  using Android.Content;
  using Android.Preferences;
  using Android.Support.V7.App;

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

        // Set our view from the "main" layout resource
         SetContentView (Resource.Layout.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="fill_parent"
     android:layout_height="fill_parent">
    <Button
     android:id="@+id/MyButton"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:text="@string/Hello"
     android:layout_marginTop="50dp"
     android:layout_marginLeft="20dp"
     android:layout_marginRight="20dp" />
  </LinearLayout>


谁能告诉我我做错了吗?

提前致谢。

最佳答案

您是否尝试过清洁溶液? Xamarin可能会卡在解析xml的某处。

关于c# - 使用Android.Support.V7.App.AppCompatActivity时获取ResourceNotFoundException,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42690642/

10-09 07:08