aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/Android-AppMsg/library/res
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/Android-AppMsg/library/res')
-rw-r--r--libraries/Android-AppMsg/library/res/layout/app_msg.xml20
-rw-r--r--libraries/Android-AppMsg/library/res/values/colors.xml8
2 files changed, 28 insertions, 0 deletions
diff --git a/libraries/Android-AppMsg/library/res/layout/app_msg.xml b/libraries/Android-AppMsg/library/res/layout/app_msg.xml
new file mode 100644
index 000000000..235fe47b9
--- /dev/null
+++ b/libraries/Android-AppMsg/library/res/layout/app_msg.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:gravity="center"
+ android:minHeight="48dp"
+ android:orientation="vertical" >
+
+ <TextView
+ android:id="@android:id/message"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:gravity="center"
+ android:padding="8dp"
+ android:textColor="?android:textColorPrimaryInverse"
+ android:textIsSelectable="false"
+ android:textSize="14sp"
+ android:textStyle="bold" />
+
+</LinearLayout> \ No newline at end of file
diff --git a/libraries/Android-AppMsg/library/res/values/colors.xml b/libraries/Android-AppMsg/library/res/values/colors.xml
new file mode 100644
index 000000000..2bfd9ecb4
--- /dev/null
+++ b/libraries/Android-AppMsg/library/res/values/colors.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+
+ <color name="alert">#CC0000</color>
+ <color name="confirm">#FF8800</color>
+ <color name="info">#669900</color>
+
+</resources> \ No newline at end of file