|
|
@ -1,11 +1,17 @@ |
|
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto" |
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto" |
|
|
|
android:background="@drawable/shape_card_view" |
|
|
|
android:background="@drawable/shape_card_view" |
|
|
|
android:padding="5dp" |
|
|
|
android:padding="5dp" |
|
|
|
android:orientation="horizontal"> |
|
|
|
android:orientation="vertical"> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout |
|
|
|
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
|
|
|
android:orientation="horizontal" |
|
|
|
|
|
|
|
android:gravity="center_vertical"> |
|
|
|
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView |
|
|
|
<androidx.recyclerview.widget.RecyclerView |
|
|
|
android:id="@+id/recycler_view" |
|
|
|
android:id="@+id/recycler_view" |
|
|
@ -13,11 +19,7 @@ |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_gravity="center" |
|
|
|
android:layout_gravity="center" |
|
|
|
android:orientation="horizontal" |
|
|
|
android:orientation="horizontal" |
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" |
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" /> |
|
|
|
app:layout_constraintLeft_toLeftOf="parent" |
|
|
|
|
|
|
|
app:layout_constraintTop_toTopOf="@+id/iv_menu_more" |
|
|
|
|
|
|
|
app:layout_constraintRight_toLeftOf="@+id/iv_menu_more" |
|
|
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/iv_menu_more" /> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView |
|
|
|
<androidx.appcompat.widget.AppCompatImageView |
|
|
|
android:id="@+id/iv_menu_more" |
|
|
|
android:id="@+id/iv_menu_more" |
|
|
@ -27,10 +29,9 @@ |
|
|
|
android:src="@drawable/ic_more_vert" |
|
|
|
android:src="@drawable/ic_more_vert" |
|
|
|
android:tint="@color/tv_text_default" |
|
|
|
android:tint="@color/tv_text_default" |
|
|
|
android:visibility="gone" |
|
|
|
android:visibility="gone" |
|
|
|
android:contentDescription="@string/more_menu" |
|
|
|
android:contentDescription="@string/more_menu" /> |
|
|
|
android:layout_gravity="center_vertical" |
|
|
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" |
|
|
|
</LinearLayout> |
|
|
|
app:layout_constraintRight_toRightOf="parent" /> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView |
|
|
|
<androidx.recyclerview.widget.RecyclerView |
|
|
|
android:id="@+id/recycler_view_more" |
|
|
|
android:id="@+id/recycler_view_more" |
|
|
@ -38,10 +39,8 @@ |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_gravity="center" |
|
|
|
android:layout_gravity="center" |
|
|
|
android:visibility="gone" |
|
|
|
android:visibility="gone" |
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" |
|
|
|
android:orientation="vertical" |
|
|
|
app:layout_constraintBottom_toBottomOf="parent" |
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" /> |
|
|
|
app:layout_constraintTop_toBottomOf="@+id/iv_menu_more" |
|
|
|
|
|
|
|
app:layout_constraintRight_toRightOf="parent" /> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
|
|
|
|