summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Android/AppCompat/Resource.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Android/AppCompat/Resource.cs')
-rw-r--r--Xamarin.Forms.Platform.Android/AppCompat/Resource.cs31
1 files changed, 31 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.Android/AppCompat/Resource.cs b/Xamarin.Forms.Platform.Android/AppCompat/Resource.cs
new file mode 100644
index 00000000..08d3c5e4
--- /dev/null
+++ b/Xamarin.Forms.Platform.Android/AppCompat/Resource.cs
@@ -0,0 +1,31 @@
+using Android.Runtime;
+
+[assembly: ResourceDesigner("Xamarin.Forms.Platform.Android.Resource", IsApplication = false)]
+
+namespace Xamarin.Forms.Platform.Android
+{
+ public class Resource
+ {
+ static Resource()
+ {
+ ResourceIdManager.UpdateIdValues();
+ }
+
+ public class Attribute
+ {
+ // aapt resource value: 0x7f0100a5
+ // ReSharper disable once InconsistentNaming
+ // Android is pretty insistent about this casing
+ public static int actionBarSize = 2130772133;
+
+ static Attribute()
+ {
+ ResourceIdManager.UpdateIdValues();
+ }
+
+ Attribute()
+ {
+ }
+ }
+ }
+} \ No newline at end of file