70 lines
2.6 KiB
XML
70 lines
2.6 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<com.google.android.flexbox.FlexboxLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:background="@color/dasbordColor"
|
||
|
|
android:paddingHorizontal="8dp"
|
||
|
|
android:paddingVertical="8dp"
|
||
|
|
app:flexDirection="column"
|
||
|
|
app:justifyContent="flex_start"
|
||
|
|
app:alignItems="stretch">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginBottom="@dimen/dp_5"
|
||
|
|
android:orientation="vertical"
|
||
|
|
app:layout_constraintBottom_toTopOf="@+id/bottommenus"
|
||
|
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
|
app:layout_constraintTop_toTopOf="parent">
|
||
|
|
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginLeft="@dimen/dp_5"
|
||
|
|
android:layout_marginTop="@dimen/dp_5"
|
||
|
|
android:gravity="center_vertical"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:paddingVertical="@dimen/dp_5">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/dashboartmenu"
|
||
|
|
android:layout_width="25dp"
|
||
|
|
android:layout_height="25dp"
|
||
|
|
android:layout_gravity="center_vertical"
|
||
|
|
android:layout_marginTop="3dp"
|
||
|
|
android:src="@drawable/nav2"
|
||
|
|
android:tint="@color/white" />
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/pozomindlogo"
|
||
|
|
android:layout_width="50dp"
|
||
|
|
android:layout_height="27dp"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_marginStart="@dimen/dp_10"
|
||
|
|
android:src="@drawable/pozomindlogo"
|
||
|
|
android:tint="@color/white" />
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
|
android:id="@+id/dashboardmenurecycler"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical">
|
||
|
|
</androidx.recyclerview.widget.RecyclerView>
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</com.google.android.flexbox.FlexboxLayout>
|