]> git.ktnx.net Git - mobile-ledger.git/commitdiff
move account name filter from the transaction list to the main header
authorDamyan Ivanov <dam+mobileledger@ktnx.net>
Sat, 12 Jan 2019 04:27:58 +0000 (04:27 +0000)
committerDamyan Ivanov <dam+mobileledger@ktnx.net>
Sat, 12 Jan 2019 04:27:58 +0000 (04:27 +0000)
app/src/main/res/layout/activity_main.xml
app/src/main/res/layout/transaction_list_fragment.xml

index 833b5fb280118d8dff55974f12b75e27a809116a..656af5117d7ac3c3c71f03906f7a1fb7eaa58275 100644 (file)
                 android:layout_width="match_parent"
                 android:layout_height="wrap_content"
                 android:orientation="vertical"
+                android:theme="@style/AppTheme"
                 app:layout_constraintEnd_toEndOf="parent"
                 app:layout_constraintStart_toStartOf="parent"
                 app:layout_constraintTop_toTopOf="parent">
 
+                <LinearLayout
+                    android:id="@+id/transaction_list_account_name_filter"
+                    android:layout_width="match_parent"
+                    android:layout_height="match_parent"
+                    android:orientation="horizontal"
+                    android:visibility="gone">
+
+                    <TextView
+                        android:layout_width="wrap_content"
+                        android:layout_height="wrap_content"
+                        android:background="@drawable/ic_filter_list_black_24dp" />
+
+                    <AutoCompleteTextView
+                        android:id="@+id/transaction_filter_account_name"
+                        android:layout_width="0dp"
+                        android:layout_height="wrap_content"
+                        android:layout_weight="1" />
+
+                    <TextView
+                        android:id="@+id/clearAccountNameFilter"
+                        android:layout_width="wrap_content"
+                        android:layout_height="wrap_content"
+                        android:background="@drawable/ic_clear_black_24dp"
+                        android:clickable="true"
+                        android:focusable="true" />
+
+                </LinearLayout>
+
                 <LinearLayout
                     android:layout_width="match_parent"
                     android:layout_height="wrap_content"
                         android:id="@+id/transaction_last_update_label"
                         android:layout_width="wrap_content"
                         android:layout_height="wrap_content"
-                        android:paddingEnd="8dp"
                         android:paddingStart="8dp"
+                        android:paddingEnd="8dp"
                         android:text="@string/transactions_last_update_label"
                         android:textColor="@android:color/tertiary_text_light" />
 
index bcee98556b8541c4e571d04b8a8047c4410c3dbd..919b590be73b4bca7f8401670d713b9209aa5a9d 100644 (file)
         app:layout_constraintStart_toStartOf="parent"
         app:layout_constraintTop_toTopOf="parent">
 
-        <LinearLayout
-            android:id="@+id/transaction_list_account_name_filter"
-            android:layout_width="match_parent"
-            android:layout_height="match_parent"
-            android:orientation="horizontal"
-            android:visibility="gone">
-
-            <TextView
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:background="@drawable/ic_filter_list_black_24dp" />
-
-            <AutoCompleteTextView
-                android:id="@+id/transaction_filter_account_name"
-                android:layout_width="0dp"
-                android:layout_height="wrap_content"
-                android:layout_weight="1" />
-
-            <TextView
-                android:id="@+id/clearAccountNameFilter"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:background="@drawable/ic_clear_black_24dp"
-                android:clickable="true"
-                android:focusable="true"
-                android:onClick="onViewClicked" />
-
-        </LinearLayout>
 
     </LinearLayout>