]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/res/layout/nav_profile_list_head.xml
profile list: add a button for cancelling the edit mode
[mobile-ledger.git] / app / src / main / res / layout / nav_profile_list_head.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   ~ Copyright © 2019 Damyan Ivanov.
5   ~  This file is part of MoLe.
6   ~  MoLe is free software: you can distribute it and/or modify it
7   ~  under the term of the GNU General Public License as published by
8   ~  the Free Software Foundation, either version 3 of the License, or
9   ~  (at your opinion), any later version.
10   ~
11   ~  MoLe is distributed in the hope that it will be useful,
12   ~  but WITHOUT ANY WARRANTY; without even the implied warranty of
13   ~  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14   ~  GNU General Public License terms for details.
15   ~
16   ~  You should have received a copy of the GNU General Public License
17   ~  along with Mobile-Ledger. If not, see <https://www.gnu.org/licenses/>.
18   -->
19
20 <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
21     xmlns:app="http://schemas.android.com/apk/res-auto"
22     android:layout_width="match_parent"
23     android:layout_height="@dimen/thumb_row_height"
24     android:paddingEnd="@dimen/activity_horizontal_margin">
25
26     <androidx.appcompat.widget.LinearLayoutCompat
27         android:id="@+id/nav_profile_list_head_buttons"
28         android:layout_width="wrap_content"
29         android:layout_height="wrap_content"
30         android:gravity="center_vertical"
31         android:orientation="horizontal"
32         app:layout_constraintBottom_toBottomOf="parent"
33         app:layout_constraintEnd_toEndOf="parent"
34         app:layout_constraintTop_toTopOf="parent">
35
36         <ImageView
37             android:id="@+id/nav_profiles_arrow"
38             android:layout_width="wrap_content"
39             android:layout_height="wrap_content"
40             android:background="@drawable/ic_expand_more_black_24dp"
41             android:gravity="end|center_vertical"
42             android:onClick="navProfilesHeadClicked"
43             app:layout_constraintBottom_toBottomOf="parent"
44             app:layout_constraintEnd_toEndOf="parent"
45             app:layout_constraintTop_toTopOf="parent" />
46
47         <ImageView
48             android:id="@+id/nav_profiles_cancel_edit"
49             android:layout_width="wrap_content"
50             android:layout_height="wrap_content"
51             android:background="@drawable/ic_clear_black_24dp"
52             android:gravity="end|center_vertical"
53             android:visibility="gone"
54             app:layout_constraintBottom_toBottomOf="parent"
55             app:layout_constraintEnd_toEndOf="parent"
56             app:layout_constraintTop_toTopOf="parent" />
57
58     </androidx.appcompat.widget.LinearLayoutCompat>
59
60     <TextView
61         android:id="@+id/nav_profiles_label"
62         style="@style/nav_button"
63         android:layout_width="0dp"
64         android:layout_height="0dp"
65         android:layout_marginEnd="8dp"
66         android:drawableStart="@drawable/ic_view_list_black_24dp"
67         android:gravity="start|center_vertical"
68         android:onClick="navProfilesHeadClicked"
69         android:text="@string/profiles"
70         app:layout_constraintBottom_toBottomOf="parent"
71         app:layout_constraintEnd_toStartOf="@+id/nav_profile_list_head_buttons"
72         app:layout_constraintStart_toStartOf="parent"
73         app:layout_constraintTop_toTopOf="parent" />
74
75 </androidx.constraintlayout.widget.ConstraintLayout>