aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain/res/layout/import_keys.xml
diff options
context:
space:
mode:
Diffstat (limited to 'OpenPGP-Keychain/res/layout/import_keys.xml')
-rw-r--r--OpenPGP-Keychain/res/layout/import_keys.xml20
1 files changed, 12 insertions, 8 deletions
diff --git a/OpenPGP-Keychain/res/layout/import_keys.xml b/OpenPGP-Keychain/res/layout/import_keys.xml
index ae391e2fd..1b40bad58 100644
--- a/OpenPGP-Keychain/res/layout/import_keys.xml
+++ b/OpenPGP-Keychain/res/layout/import_keys.xml
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:bootstrapbutton="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true" >
@@ -22,19 +23,22 @@
android:paddingLeft="10dp"
android:paddingRight="10dp" >
- <Button
+ <com.beardedhen.androidbootstrap.BootstrapButton
android:id="@+id/import_import"
android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:onClick="importOnClick"
- android:text="@string/import_import" />
+ android:layout_height="60dp"
+ android:padding="4dp"
+ android:text="@string/import_import"
+ bootstrapbutton:bb_icon_left="fa-download"
+ bootstrapbutton:bb_type="info" />
- <Button
+ <com.beardedhen.androidbootstrap.BootstrapButton
android:id="@+id/import_sign_and_upload"
android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:onClick="signAndUploadOnClick"
- android:text="@string/import_sign_and_upload" />
+ android:layout_height="60dp"
+ android:padding="4dp"
+ android:text="@string/import_sign_and_upload"
+ bootstrapbutton:bb_type="info" />
</LinearLayout>
<FrameLayout