私は同じ問題を抱えていて、次のように解決しました:
私のMainActivity.csファイルで私が定義した
public static ContentResolver myContentResolver;
OnCreate メソッドでその値を設定します
protected override void OnCreate(Bundle bundle)
{
TabLayoutResource = Resource.Layout.Tabbar;
ToolbarResource = Resource.Layout.Toolbar;
base.OnCreate(bundle);
global::Xamarin.Forms.Forms.Init(this, bundle);
LoadApplication(new App());
// Getting ContentResolver instance
myContentResolver = this.ContentResolver;
}
そして、私の GetDeviceId
public String GetDeviceId()
{
String deviceID = Android.OS.Build.Serial?.ToString();
if (String.IsNullOrEmpty(deviceID) || deviceID.ToUpper() == "UNKNOWN") // Android 9 returns "Unknown"
{
ContentResolver myContentResolver = MyApp.Droid.MainActivity.myContentResolver;
deviceID = Android.Provider.Settings.Secure.GetString(myContentResolver, Android.Provider.Settings.Secure.AndroidId);
}
return deviceID;
}