aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain/src/main/res/layout/drawer_list_item.xml
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2014-02-05 00:19:32 +0100
committerDominik Schürmann <dominik@dominikschuermann.de>2014-02-05 00:19:32 +0100
commit1f1de0ce06dabf533840fd346f61854b8b0c8330 (patch)
tree219201883675da73560318295cc5924c25f322bc /OpenPGP-Keychain/src/main/res/layout/drawer_list_item.xml
parentc1e6b5284df88a5cb5c845cdb5eec3bcec348c19 (diff)
downloadopen-keychain-1f1de0ce06dabf533840fd346f61854b8b0c8330.tar.gz
open-keychain-1f1de0ce06dabf533840fd346f61854b8b0c8330.tar.bz2
open-keychain-1f1de0ce06dabf533840fd346f61854b8b0c8330.zip
better alignment of navigation drawer icons
Diffstat (limited to 'OpenPGP-Keychain/src/main/res/layout/drawer_list_item.xml')
-rw-r--r--OpenPGP-Keychain/src/main/res/layout/drawer_list_item.xml25
1 files changed, 15 insertions, 10 deletions
diff --git a/OpenPGP-Keychain/src/main/res/layout/drawer_list_item.xml b/OpenPGP-Keychain/src/main/res/layout/drawer_list_item.xml
index 14760e79d..bf70b2de7 100644
--- a/OpenPGP-Keychain/src/main/res/layout/drawer_list_item.xml
+++ b/OpenPGP-Keychain/src/main/res/layout/drawer_list_item.xml
@@ -1,28 +1,33 @@
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:fontawesometext="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal" >
+ android:layout_height="wrap_content">
<com.beardedhen.androidbootstrap.FontAwesomeText
android:id="@+id/drawer_item_icon"
- android:layout_width="32dp"
- android:layout_height="32dp"
- android:layout_margin="10dp"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
android:gravity="center_vertical"
android:textSize="24sp"
- fontawesometext:fa_icon="fa-github" />
+ android:layout_marginLeft="8dp"
+ fontawesometext:fa_icon="fa-github"
+ android:layout_centerVertical="true"
+ android:layout_alignParentLeft="true"
+ android:layout_alignParentStart="true" />
<TextView
android:id="@+id/drawer_item_text"
+ android:text="Test"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
+ android:layout_marginLeft="8dp"
android:paddingBottom="16dp"
- android:paddingLeft="4dp"
android:paddingRight="16dp"
android:paddingTop="16dp"
android:textAppearance="@android:style/TextAppearance.Medium"
- android:textColor="#111" />
+ android:textColor="#111"
+ android:layout_alignParentTop="true"
+ android:layout_toRightOf="@+id/drawer_item_icon" />
-</LinearLayout>
+</RelativeLayout>