diff --git a/TheGameExtreme.Android/Properties/AndroidManifest.xml b/TheGameExtreme.Android/Properties/AndroidManifest.xml index 2eb87e8..9caeb40 100644 --- a/TheGameExtreme.Android/Properties/AndroidManifest.xml +++ b/TheGameExtreme.Android/Properties/AndroidManifest.xml @@ -1,5 +1,5 @@  - + diff --git a/TheGameExtreme/view/TouchManipulationBitmap.cs b/TheGameExtreme/view/TouchManipulationBitmap.cs index d23cfab..70572b3 100644 --- a/TheGameExtreme/view/TouchManipulationBitmap.cs +++ b/TheGameExtreme/view/TouchManipulationBitmap.cs @@ -14,6 +14,8 @@ namespace TheGameExtreme.view Dictionary touchDictionary = new Dictionary(); public CardVM Value; public string display; + private float width = 0.01f * (float)DeviceDisplay.MainDisplayInfo.Width; + private float height = 0.01f * (float)DeviceDisplay.MainDisplayInfo.Width * 3f; public TouchManipulationBitmap(SKPaint textPaint, CardVM value) { @@ -59,7 +61,7 @@ namespace TheGameExtreme.view textPaint.MeasureText(display, ref textBounds); SKRoundRect card = new SKRoundRect(textBounds, 1f, 1f); - card.Inflate(0.01f * (float)DeviceDisplay.MainDisplayInfo.Width, 0.01f * (float)DeviceDisplay.MainDisplayInfo.Width * 5f); + card.Inflate(width, height); canvas.DrawRoundRect(card, textPaint); canvas.DrawText(display, 0, 0, textPaint); diff --git a/com.uca.thegameextreme.apk b/com.uca.thegameextreme.apk index 7f16b38..16cbb3a 100644 Binary files a/com.uca.thegameextreme.apk and b/com.uca.thegameextreme.apk differ