diff options
author | Kangho Hur <kangho.hur@samsung.com> | 2017-04-25 20:52:52 +0900 |
---|---|---|
committer | Kangho Hur <kangho.hur@samsung.com> | 2017-07-10 11:11:24 +0900 |
commit | 1e0a591918794676bfeeb33f21365b8408d81e15 (patch) | |
tree | 6e0114d16dc91996d59ef0943afe300fc5103fe7 | |
parent | 2d3ccf43602b42882354bd8748429af4a59ff6b8 (diff) | |
download | xamarin-forms-1e0a591918794676bfeeb33f21365b8408d81e15.tar.gz xamarin-forms-1e0a591918794676bfeeb33f21365b8408d81e15.tar.bz2 xamarin-forms-1e0a591918794676bfeeb33f21365b8408d81e15.zip |
Fix Device.Info creation issue
Change-Id: If9aa1d762364ef185593eb2bb38d1bbcd9d3ed6b
-rw-r--r-- | Xamarin.Forms.Platform.Tizen/Forms.cs | 13 | ||||
-rw-r--r-- | packaging/xamarin-forms-tizen.spec | 2 |
2 files changed, 9 insertions, 6 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Forms.cs b/Xamarin.Forms.Platform.Tizen/Forms.cs index 555b149e..57fc6050 100644 --- a/Xamarin.Forms.Platform.Tizen/Forms.cs +++ b/Xamarin.Forms.Platform.Tizen/Forms.cs @@ -12,11 +12,16 @@ namespace Xamarin.Forms.Platform.Tizen { public static class Forms { + static Lazy<string> s_profile = new Lazy<string>(() => + { + //TODO : Fix me if elm_config_profile_get() unavailable + return Elementary.GetProfile(); + }); + static Lazy<int> s_dpi = new Lazy<int>(() => { int dpi = 0; - var info = Device.Info as TizenDeviceInfo; - if (info != null && info.Profile == "tv") + if (s_profile.Value == "tv") { // Use fixed DPI value (72) if TV profile return 72; @@ -75,9 +80,6 @@ namespace Xamarin.Forms.Platform.Tizen public TizenDeviceInfo(FormsApplication formsApplication) { - //TODO : Fix me if elm_config_profile_get() unavailable - profile = Elementary.GetProfile(); - int width = 0; int height = 0; @@ -92,6 +94,7 @@ namespace Xamarin.Forms.Platform.Tizen pixelScreenSize = new Size(width, height); scaledScreenSize = new Size(width / scalingFactor, height / scalingFactor); + profile = s_profile.Value; } } diff --git a/packaging/xamarin-forms-tizen.spec b/packaging/xamarin-forms-tizen.spec index 08cccea1..f996e7f5 100644 --- a/packaging/xamarin-forms-tizen.spec +++ b/packaging/xamarin-forms-tizen.spec @@ -2,7 +2,7 @@ %define XF_RELEASE 233 # Increase this XF_DEV_VERSION when any public APIs of Xamarin.Forms.Platform.Tizen are changed. -%define XF_DEV_VERSION 001 +%define XF_DEV_VERSION 002 Name: xamarin-forms-tizen Summary: Xamarin.Forms for Tizen platform |