aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain/src/main/res/layout
diff options
context:
space:
mode:
authorVincent Breitmoser <valodim@mugenguild.com>2014-03-17 14:10:40 +0100
committerVincent Breitmoser <valodim@mugenguild.com>2014-03-17 14:10:40 +0100
commite8ad4317a49cc86ddd5e147fe18f82beb02f9717 (patch)
tree6460451cdde26bceb2336659e1548b289a1872f7 /OpenPGP-Keychain/src/main/res/layout
parentf192c701794716d3b780b635342cf0f2e8b18ef5 (diff)
downloadopen-keychain-e8ad4317a49cc86ddd5e147fe18f82beb02f9717.tar.gz
open-keychain-e8ad4317a49cc86ddd5e147fe18f82beb02f9717.tar.bz2
open-keychain-e8ad4317a49cc86ddd5e147fe18f82beb02f9717.zip
certs: more filters, better initial uid selection, code cosmetics
- add three types of filters for certificate list (ui looks like crap there, need to work on that) - select uncertified uids by default in CertifyKeyActivity - move some code around in KeychainProvider, 's slightly less hacky now
Diffstat (limited to 'OpenPGP-Keychain/src/main/res/layout')
-rw-r--r--OpenPGP-Keychain/src/main/res/layout/view_key_certs_fragment.xml31
1 files changed, 14 insertions, 17 deletions
diff --git a/OpenPGP-Keychain/src/main/res/layout/view_key_certs_fragment.xml b/OpenPGP-Keychain/src/main/res/layout/view_key_certs_fragment.xml
index 60f071bd4..b2bfe1700 100644
--- a/OpenPGP-Keychain/src/main/res/layout/view_key_certs_fragment.xml
+++ b/OpenPGP-Keychain/src/main/res/layout/view_key_certs_fragment.xml
@@ -9,29 +9,26 @@
android:layout_height="wrap_content"
android:orientation="vertical">
+ <Spinner
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:id="@+id/spinner"
+ android:layout_gravity="center_horizontal"
+ android:gravity="center_horizontal"
+ android:layout_centerHorizontal="true"
+ android:layout_marginTop="2dp"
+ android:layout_marginBottom="2dp" />
+
<view
android:layout_width="match_parent"
android:layout_height="match_parent"
class="se.emilsjolander.stickylistheaders.StickyListHeadersListView"
android:id="@+id/list"
- android:layout_alignParentTop="true"
- android:layout_above="@+id/showUnknown"
android:paddingRight="32dp"
- android:layout_alignParentLeft="true"
- android:layout_alignParentStart="true"
- android:paddingLeft="16dp" />
-
- <CheckBox
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/show_unknown_signatures"
- android:id="@+id/showUnknown"
- android:enabled="true"
- android:layout_alignParentBottom="true"
- android:layout_alignEnd="@+id/list"
- android:singleLine="false"
- android:layout_alignParentRight="true"
- android:layout_marginRight="16dp" />
+ android:paddingLeft="16dp"
+ android:layout_alignParentStart="false"
+ android:layout_alignParentEnd="false"
+ android:layout_below="@+id/spinner" />
<TextView
android:layout_width="wrap_content"