diff options
author | Ashley Hughes <spirit.returned@gmail.com> | 2014-02-22 10:27:03 +0000 |
---|---|---|
committer | Ashley Hughes <spirit.returned@gmail.com> | 2014-02-22 10:27:03 +0000 |
commit | 1b25ec5a0c011f5024d5f14f9919645a455e8a41 (patch) | |
tree | f819ac3cea715f3c5cfc5f40bbf8673013ccc7ff /libraries/Android-AppMsg/library/res | |
parent | c3c311152ef33a6887909dbbeae40e8d01f96a9d (diff) | |
parent | d1e8acd3027dce6fd34620b67a2d2be1634822cf (diff) | |
download | open-keychain-1b25ec5a0c011f5024d5f14f9919645a455e8a41.tar.gz open-keychain-1b25ec5a0c011f5024d5f14f9919645a455e8a41.tar.bz2 open-keychain-1b25ec5a0c011f5024d5f14f9919645a455e8a41.zip |
master merge
Diffstat (limited to 'libraries/Android-AppMsg/library/res')
-rw-r--r-- | libraries/Android-AppMsg/library/res/layout/app_msg.xml | 20 | ||||
-rw-r--r-- | libraries/Android-AppMsg/library/res/values/colors.xml | 8 |
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 |