gpt4 book ai didi

c# - 使用 Android.Support.V7.App.AppCompatActivity 时获取 ResourceNotFoundException

转载 作者:行者123 更新时间:2023-11-30 23:15:14 27 4
gpt4 key购买 nike

我是 Xamarin 的新手。我从 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/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com