mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-10 19:45:05 -05:00
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="?android:attr/listPreferredItemHeight"
|
||
|
android:background="@drawable/message_list_item_footer_background"
|
||
|
android:gravity="left"
|
||
|
android:orientation="horizontal">
|
||
|
<Button
|
||
|
android:id="@+id/account_list"
|
||
|
android:text="@string/back_to_accounts_action"
|
||
|
android:textSize="30px"
|
||
|
android:padding="5px"
|
||
|
android:layout_width="50px"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:minWidth="@dimen/button_minWidth"
|
||
|
android:layout_centerVertical="true"
|
||
|
/>
|
||
|
<TextView
|
||
|
android:id="@+id/account_name"
|
||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||
|
android:textColor="?android:attr/textColorPrimary"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:paddingLeft="10px"
|
||
|
android:gravity="left"
|
||
|
/>
|
||
|
</LinearLayout>
|