]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/res/layout/account_summary_row.xml
better account starr-ing control
[mobile-ledger.git] / app / src / main / res / layout / account_summary_row.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3
4 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
5     xmlns:tools="http://schemas.android.com/tools"
6     android:id="@+id/account_summary_row"
7     android:layout_width="match_parent"
8     android:layout_height="wrap_content"
9     android:gravity="center_vertical"
10     android:minHeight="36dp"
11     android:orientation="horizontal"
12     android:paddingStart="8dp"
13     android:paddingEnd="8dp"
14     tools:showIn="@layout/content_account_summary">
15
16     <CheckBox
17         android:id="@+id/account_row_check"
18         android:layout_width="wrap_content"
19         android:layout_height="match_parent"
20         android:button="@drawable/checkbox_star_black" />
21
22     <TextView
23         android:id="@+id/account_row_acc_name"
24         style="@style/account_summary_account_name"
25         android:text="Account name, a really long one. A very very very long one. It may even spawn on more than two lines -- three, four or more." />
26
27     <TextView
28         android:id="@+id/account_row_acc_amounts"
29         style="@style/account_summary_amounts"
30         android:text="123,45\n678,90" />
31 </LinearLayout>