2019-04-29 08:14:55 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/rvAccount"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:nestedScrollingEnabled="false"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
2019-07-20 20:22:21 +00:00
|
|
|
<View
|
|
|
|
android:id="@+id/vSeparatorAccount"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="?attr/colorSeparator"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/rvAccount" />
|
|
|
|
|
2019-08-16 14:35:33 +00:00
|
|
|
<ImageButton
|
2019-07-20 20:22:21 +00:00
|
|
|
android:id="@+id/ivExpanderUnified"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-08-16 14:35:33 +00:00
|
|
|
android:background="?android:attr/selectableItemBackground"
|
2019-07-20 20:22:21 +00:00
|
|
|
android:contentDescription="@string/title_legend_expander"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/vSeparatorAccount"
|
|
|
|
app:srcCompat="@drawable/expander" />
|
|
|
|
|
2019-07-19 06:27:44 +00:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/rvUnified"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:nestedScrollingEnabled="false"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2019-07-20 20:22:21 +00:00
|
|
|
app:layout_constraintTop_toBottomOf="@id/ivExpanderUnified" />
|
2019-07-19 06:27:44 +00:00
|
|
|
|
2019-04-29 08:14:55 +00:00
|
|
|
<View
|
2019-07-20 20:22:21 +00:00
|
|
|
android:id="@+id/vSeparatorUnified"
|
2019-04-29 08:14:55 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="?attr/colorSeparator"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2019-07-19 06:27:44 +00:00
|
|
|
app:layout_constraintTop_toBottomOf="@id/rvUnified" />
|
2019-04-29 08:14:55 +00:00
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/rvFolder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:nestedScrollingEnabled="false"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2019-07-20 20:22:21 +00:00
|
|
|
app:layout_constraintTop_toBottomOf="@id/vSeparatorUnified" />
|
2019-04-29 08:14:55 +00:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/vSeparatorFolder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="?attr/colorSeparator"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/rvFolder" />
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/rvMenu"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:nestedScrollingEnabled="false"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/vSeparatorFolder" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/vSeparatorMenu"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="?attr/colorSeparator"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/rvMenu" />
|
|
|
|
|
2019-08-16 14:35:33 +00:00
|
|
|
<ImageButton
|
2019-07-20 20:22:21 +00:00
|
|
|
android:id="@+id/ivExpanderExtra"
|
2019-04-29 08:14:55 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-08-16 14:35:33 +00:00
|
|
|
android:background="?android:attr/selectableItemBackground"
|
2019-04-29 08:14:55 +00:00
|
|
|
android:contentDescription="@string/title_legend_expander"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2019-07-19 06:27:44 +00:00
|
|
|
app:layout_constraintTop_toBottomOf="@id/vSeparatorMenu"
|
|
|
|
app:srcCompat="@drawable/expander" />
|
2019-04-29 08:14:55 +00:00
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2019-04-29 09:39:24 +00:00
|
|
|
android:id="@+id/rvMenuExtra"
|
2019-04-29 08:14:55 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:nestedScrollingEnabled="false"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2019-07-20 20:22:21 +00:00
|
|
|
app:layout_constraintTop_toBottomOf="@id/ivExpanderExtra" />
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.Group
|
|
|
|
android:id="@+id/grpUnified"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
app:constraint_referenced_ids="rvUnified,vSeparatorUnified" />
|
2019-04-29 08:14:55 +00:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|