aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain/res/layout/edit_key_key_item.xml
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2014-01-09 15:12:41 +0100
committerDominik Schürmann <dominik@dominikschuermann.de>2014-01-09 15:12:41 +0100
commit2162c85c125a2155f29ddcd436d36ff9a472c3d7 (patch)
tree317bad79b8a9a8b05b1fbeff8d75b9abb6647711 /OpenPGP-Keychain/res/layout/edit_key_key_item.xml
parent11ed8d7e16abfb98cd96d8a4447382c83435dac8 (diff)
downloadopen-keychain-2162c85c125a2155f29ddcd436d36ff9a472c3d7.tar.gz
open-keychain-2162c85c125a2155f29ddcd436d36ff9a472c3d7.tar.bz2
open-keychain-2162c85c125a2155f29ddcd436d36ff9a472c3d7.zip
use bootstrap buttons
Diffstat (limited to 'OpenPGP-Keychain/res/layout/edit_key_key_item.xml')
-rw-r--r--OpenPGP-Keychain/res/layout/edit_key_key_item.xml28
1 files changed, 17 insertions, 11 deletions
diff --git a/OpenPGP-Keychain/res/layout/edit_key_key_item.xml b/OpenPGP-Keychain/res/layout/edit_key_key_item.xml
index 521e8ce2c..06bff2f9e 100644
--- a/OpenPGP-Keychain/res/layout/edit_key_key_item.xml
+++ b/OpenPGP-Keychain/res/layout/edit_key_key_item.xml
@@ -16,12 +16,13 @@
-->
<org.sufficientlysecure.keychain.ui.widget.KeyEditor xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
+ xmlns:bootstrapbutton="http://schemas.android.com/apk/res-auto"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<LinearLayout
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
@@ -80,7 +81,7 @@
<TextView
android:id="@+id/creation"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="wrap_content" />
</TableRow>
@@ -94,10 +95,12 @@
android:paddingRight="10dip"
android:text="@string/label_expiry" />
- <Button
+ <com.beardedhen.androidbootstrap.BootstrapButton
android:id="@+id/expiry"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content" />
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/none"
+ bootstrapbutton:bb_type="default" />
</TableRow>
<TableRow>
@@ -112,22 +115,25 @@
<Spinner
android:id="@+id/usage"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="wrap_content" />
</TableRow>
</TableLayout>
- <ImageButton
+ <com.beardedhen.androidbootstrap.BootstrapButton
android:id="@+id/delete"
- style="@style/MinusButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_gravity="center_vertical" />
+ android:layout_margin="10dp"
+ bootstrapbutton:bb_icon_left="fa-minus"
+ bootstrapbutton:bb_roundedCorners="true"
+ bootstrapbutton:bb_size="small"
+ bootstrapbutton:bb_type="danger" />
</LinearLayout>
<View
android:id="@+id/separator"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="1dip"
android:background="?android:attr/listDivider" />