diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2014-06-30 21:57:33 +0200 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2014-06-30 21:57:33 +0200 |
commit | d07dbecef435b255667b9a6d7da493057eb85a60 (patch) | |
tree | f5ad741c61709fea8585a09760edf35d9a9a4292 /OpenKeychain/src/main/res/layout/edit_key_section.xml | |
parent | 6d7a9ec48a6517adfe94ed2edfa875def538d088 (diff) | |
parent | 5dcbc07af9a144dac7d8f03887127f912e8b5ee3 (diff) | |
download | open-keychain-d07dbecef435b255667b9a6d7da493057eb85a60.tar.gz open-keychain-d07dbecef435b255667b9a6d7da493057eb85a60.tar.bz2 open-keychain-d07dbecef435b255667b9a6d7da493057eb85a60.zip |
Merge pull request #704 from da-kid/master
Fixed #702 and also #597
Diffstat (limited to 'OpenKeychain/src/main/res/layout/edit_key_section.xml')
-rw-r--r-- | OpenKeychain/src/main/res/layout/edit_key_section.xml | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/OpenKeychain/src/main/res/layout/edit_key_section.xml b/OpenKeychain/src/main/res/layout/edit_key_section.xml index 9f10ff8c1..6cfe18bd6 100644 --- a/OpenKeychain/src/main/res/layout/edit_key_section.xml +++ b/OpenKeychain/src/main/res/layout/edit_key_section.xml @@ -1,6 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> <org.sufficientlysecure.keychain.ui.widget.SectionView xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:bootstrapbutton="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" > @@ -23,15 +22,13 @@ android:singleLine="true" android:text="Section Name" /> - <com.beardedhen.androidbootstrap.BootstrapButton + <ImageButton android:id="@+id/plusbutton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="10dp" - bootstrapbutton:bb_icon_left="fa-plus" - bootstrapbutton:bb_roundedCorners="true" - bootstrapbutton:bb_size="small" - bootstrapbutton:bb_type="success" /> + android:src="@drawable/plus" + android:background="@drawable/button_rounded_green"/> </LinearLayout> <LinearLayout |