LoginSignup
8
7

More than 5 years have passed since last update.

Forms.Contextが使えなくなった

Posted at

Xamarin.Forms,Xamarin.Androidのサンプルコードで見かけるForms.Contextが存在しないと言われググって解決方法を見つけました。

無効になったコード

var context = Forms.Context;

新1

Xamarin.Forms.Platform.Android.dllを参照している場合に有効なコード

var context = Xamarin.Forms.Forms.Context;

新2

Mono.Android.dllを参照している場合に有効なコード

var context = Android.App.Application.Context;

参考

https://forums.xamarin.com/discussion/comment/55515#Comment_55515
Prism for Xamarin.Forms入門 よりみち:DependencyService - nuits.jp blog http://www.nuits.jp/entry/2016/09/11/230541
Xamarin.Formsからプラットフォーム固有の機能を利用するには?(DependencyService利用) - Build Insider http://www.buildinsider.net/mobile/xamarintips/0008

8
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
7