diff options
author | Allan Wang <me@allanwang.ca> | 2019-12-28 00:45:35 -0800 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2019-12-28 00:45:35 -0800 |
commit | 006bc3d1a4798859fdce3c49f8a8690c823f1d7f (patch) | |
tree | e17b662c7357dff060b5963dac6f3ef09ef922a9 /app/src/main/res/layout | |
parent | 765aba2b34a33d67acccb90789b818817fec2181 (diff) | |
download | frost-006bc3d1a4798859fdce3c49f8a8690c823f1d7f.tar.gz frost-006bc3d1a4798859fdce3c49f8a8690c823f1d7f.tar.bz2 frost-006bc3d1a4798859fdce3c49f8a8690c823f1d7f.zip |
Add additional options content
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/view_nav_header.xml | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/app/src/main/res/layout/view_nav_header.xml b/app/src/main/res/layout/view_nav_header.xml index af918736..38df36d7 100644 --- a/app/src/main/res/layout/view_nav_header.xml +++ b/app/src/main/res/layout/view_nav_header.xml @@ -8,6 +8,7 @@ <androidx.constraintlayout.widget.ConstraintLayout android:layout_width="match_parent" + android:elevation="2dp" android:layout_height="160dp"> <androidx.appcompat.widget.AppCompatImageView @@ -86,6 +87,18 @@ android:visibility="gone" tools:visibility="visible"> + <LinearLayout + android:id="@+id/options_accounts_container" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical" /> + + <TextView + android:id="@+id/options_logout" + style="@style/Main.DrawerAccountOptions" + android:text="@string/kau_logout" + tools:drawableStart="@drawable/abc_vector_test" /> + <TextView android:id="@+id/options_add_account" style="@style/Main.DrawerAccountOptions" @@ -93,9 +106,9 @@ tools:drawableStart="@drawable/abc_vector_test" /> <TextView - android:id="@+id/options_logout" + android:id="@+id/options_manage_account" style="@style/Main.DrawerAccountOptions" - android:text="@string/kau_logout" + android:text="@string/kau_manage_account" tools:drawableStart="@drawable/abc_vector_test" /> </LinearLayout> |