71 lines
1.9 KiB
XML
71 lines
1.9 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:paddingHorizontal="7dp"
|
||
|
|
android:layout_height="match_parent">
|
||
|
|
|
||
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:padding="@dimen/dp_15"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:id="@+id/parentHeader"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="0dp"
|
||
|
|
android:layout_marginBottom="@dimen/dp_10"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:visibility="visible"
|
||
|
|
app:layout_constraintBottom_toTopOf="@+id/bottomLayout"
|
||
|
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
|
app:layout_constraintTop_toTopOf="parent">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="start"
|
||
|
|
android:layout_marginStart="8dp"
|
||
|
|
android:fontFamily="@font/inter_600"
|
||
|
|
android:text="More Options"
|
||
|
|
android:textColor="@color/white"
|
||
|
|
android:textSize="15dp"
|
||
|
|
android:layout_marginBottom="15dp"
|
||
|
|
android:textStyle="bold" />
|
||
|
|
|
||
|
|
<androidx.core.widget.NestedScrollView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:fillViewport="true">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:id="@+id/dynamiclayoutMenu"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical"/>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</androidx.core.widget.NestedScrollView>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|