mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-07 09:44:59 -05:00
29 lines
1.0 KiB
XML
29 lines
1.0 KiB
XML
<LinearLayout 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" >
|
|
|
|
<com.beardedhen.androidbootstrap.FontAwesomeText
|
|
android:id="@+id/drawer_item_icon"
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp"
|
|
android:layout_margin="10dp"
|
|
android:gravity="center_vertical"
|
|
android:textSize="24sp"
|
|
fontawesometext:fa_icon="fa-github" />
|
|
|
|
<TextView
|
|
android:id="@+id/drawer_item_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:paddingBottom="16dp"
|
|
android:paddingLeft="4dp"
|
|
android:paddingRight="16dp"
|
|
android:paddingTop="16dp"
|
|
android:textAppearance="@android:style/TextAppearance.Medium"
|
|
android:textColor="#111" />
|
|
|
|
</LinearLayout>
|