]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/res/layout/activity_main.xml
move account name filter from the transaction list to the main header
[mobile-ledger.git] / app / src / main / res / layout / activity_main.xml
index 2012b6b0f57b8ece34553a6fd076e945ed880d82..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:paddingStart="8dp"
                         android:paddingEnd="8dp"
                         android:text="@string/transactions_last_update_label"
                         android:textColor="@android:color/tertiary_text_light" />
                         android:layout_height="wrap_content"
                         android:background="@drawable/ic_clear_black_24dp"
                         android:clickable="true"
-                        android:focusable="auto"
+                        android:focusable="true"
                         android:onClick="onStopTransactionRefreshClick" />
                 </LinearLayout>
 
             </LinearLayout>
 
-            <FrameLayout
+            <android.support.v4.view.ViewPager
                 android:id="@+id/root_frame"
                 android:layout_width="match_parent"
                 android:layout_height="0dp"
                 app:layout_constraintBottom_toBottomOf="parent"
-                app:layout_constraintTop_toBottomOf="@+id/main_header">
+                app:layout_constraintTop_toBottomOf="@+id/main_header"
+                app:layout_behavior="@string/appbar_scrolling_view_behavior"
+                >
 
-            </FrameLayout>
+            </android.support.v4.view.ViewPager>
 
             <View
                 android:layout_width="0dp"
                         android:showDividers="beginning"
                         app:layout_constraintBottom_toBottomOf="parent">
 
+                        <TextView
+                            android:id="@+id/nav_profiles"
+                            style="@style/nav_button"
+                            android:layout_width="match_parent"
+                            android:layout_weight="1"
+                            android:drawableStart="@drawable/ic_view_list_black_24dp"
+                            android:onClick="nav_profiles_clicked"
+                            android:text="@string/profiles" />
+
                         <TextView
                             android:id="@+id/textView2"
                             style="@style/nav_button"