我有问题...我已经开始通过Xamarin学习Android开发。
我正在尝试构建我的第一个小部件,称为helloworldwidget。
我的问题是,我的AppWidget-Provider XML在XML文件夹中未识别,我正在收到此错误:
No resource found that matches the given name (at 'resource' with value '@xml/HelloWorldWidgetProvider'). HelloWidget.Droid C:UserspauloSourceReposPocsHelloWidgetHelloWidgetHelloWidget.DroidobjDebugandroidmanifestAndroidManifest.xml 17
当我将文件复制到布局资源并将资源路径更改为 @Layout/时,一切正常。
这是我的文件:
资源/xml/helloworldwidgetProvider.xml
<?xml version="1.0" encoding="UTF-8" ?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="40dp"
android:minHeight="40dp"
android:updatePeriodMillis="86400000"
android:initialLayout="@layout/HelloWorldWidget"
android:resizeMode="horizontal|vertical"
android:widgetCategory="home_screen">
</appwidget-provider>
资源/布局/helloworldwidget.xml
<?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">
<TextView
android:id="@+id/HelloWorldWidgetText"
android:text="Hello World!"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
hellowordwidget.cs
[BroadcastReceiver(Label = "@string/HelloWorldWidgetLabel")]
[IntentFilter(new string[] { "android.appwidget.action.APPWIDGET_UPDATE" })]
[MetaData("android.appwidget.provider", Resource = "@xml/HelloWorldWidgetProvider")]
public class HelloWorldWidget : BroadcastReceiver
{
public override void OnReceive(Context context, Intent intent)
{
Toast.MakeText(context, "Received intent!", ToastLength.Short).Show();
}
}
有线索?
总是有点棘手;)您必须将其引用较低的情况
[MetaData("android.appwidget.provider", Resource = "@xml/helloworldwidgetprovider")]