aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/layout/two_line_spinner_dropdown_item.xml
diff options
context:
space:
mode:
authorMichal Kepkowski <michal.kepkowski@sagiton.pl>2016-04-06 19:16:10 +0200
committerMichal Kepkowski <michal.kepkowski@sagiton.pl>2016-04-06 19:16:10 +0200
commitd9988a8cdacb38ce1a1874d1fbb65ff7eb8f8acd (patch)
treea2c6bad3a5da60d4e1fcfc75f2588821d699ea01 /OpenKeychain/src/main/res/layout/two_line_spinner_dropdown_item.xml
parentdac5f1db08b4dea5893d9fe0a1ab0daad5b44f09 (diff)
parent88ba5688d8e110fc6676c701359bb2bbca7efb77 (diff)
downloadopen-keychain-d9988a8cdacb38ce1a1874d1fbb65ff7eb8f8acd.tar.gz
open-keychain-d9988a8cdacb38ce1a1874d1fbb65ff7eb8f8acd.tar.bz2
open-keychain-d9988a8cdacb38ce1a1874d1fbb65ff7eb8f8acd.zip
Merge branch 'master' into okhttp3
Diffstat (limited to 'OpenKeychain/src/main/res/layout/two_line_spinner_dropdown_item.xml')
-rw-r--r--OpenKeychain/src/main/res/layout/two_line_spinner_dropdown_item.xml32
1 files changed, 32 insertions, 0 deletions
diff --git a/OpenKeychain/src/main/res/layout/two_line_spinner_dropdown_item.xml b/OpenKeychain/src/main/res/layout/two_line_spinner_dropdown_item.xml
new file mode 100644
index 000000000..ae325eaab
--- /dev/null
+++ b/OpenKeychain/src/main/res/layout/two_line_spinner_dropdown_item.xml
@@ -0,0 +1,32 @@
+<?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="match_parent"
+ android:orientation="vertical"
+ android:paddingLeft="10dp"
+ android:paddingTop="6dp"
+ android:paddingRight="10dp"
+ android:paddingBottom="6dp"
+ android:background="?android:attr/selectableItemBackground">
+
+ <TextView android:id="@android:id/text1"
+ style="?android:attr/spinnerDropDownItemStyle"
+ android:textStyle="bold"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:paddingLeft="6dp"
+ android:paddingRight="6dp" />
+
+ <TextView android:id="@android:id/text2"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:paddingLeft="6dp"
+ android:paddingRight="6dp"
+ android:paddingTop="2dp" />
+
+</LinearLayout>
+
+
+
+