aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/layout/keyspinner_key.xml
diff options
context:
space:
mode:
authormar-v-in <github@rvin.mooo.com>2014-08-14 12:22:02 +0200
committermar-v-in <github@rvin.mooo.com>2014-08-14 16:02:27 +0200
commitef2449917e53e312ebc2eb4bea7e3149ba9db137 (patch)
tree58aff860c8c176b5191ae0863f38c60eb22f5878 /OpenKeychain/src/main/res/layout/keyspinner_key.xml
parent62f7bf62150b460ee2dfa14f2c45f6df40d55cc9 (diff)
downloadopen-keychain-ef2449917e53e312ebc2eb4bea7e3149ba9db137.tar.gz
open-keychain-ef2449917e53e312ebc2eb4bea7e3149ba9db137.tar.bz2
open-keychain-ef2449917e53e312ebc2eb4bea7e3149ba9db137.zip
factor KeySpinner out
Diffstat (limited to 'OpenKeychain/src/main/res/layout/keyspinner_key.xml')
-rw-r--r--OpenKeychain/src/main/res/layout/keyspinner_key.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/OpenKeychain/src/main/res/layout/keyspinner_key.xml b/OpenKeychain/src/main/res/layout/keyspinner_key.xml
new file mode 100644
index 000000000..703f9133b
--- /dev/null
+++ b/OpenKeychain/src/main/res/layout/keyspinner_key.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="wrap_content"
+ android:padding="4dp"
+ android:layout_height="wrap_content">
+ <TextView android:id="@android:id/title"
+ android:textColor="?android:attr/textColorSecondary"
+ android:textSize="18sp"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:singleLine="true"
+ android:ellipsize="end"/>
+ <TextView android:id="@android:id/text1"
+ android:textColor="?android:attr/textColorTertiary"
+ android:textSize="14sp"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:singleLine="true"
+ android:ellipsize="end"
+ android:layout_marginTop="-4dip"/>
+ <TextView android:id="@android:id/text2"
+ android:textColor="?android:attr/textColorTertiary"
+ android:textSize="14sp"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:singleLine="true"
+ android:ellipsize="end"
+ android:layout_marginTop="-4dip"/>
+</LinearLayout> \ No newline at end of file