<?xml version="1.0" encoding="utf-8"?>
|
<android.support.v7.widget.CardView
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@color/white"
|
android:layout_marginStart="@dimen/dimen8"
|
android:layout_marginEnd="@dimen/dimen8"
|
android:layout_marginBottom="20dp"
|
app:cardCornerRadius="@dimen/dimen8">
|
|
<android.support.constraint.ConstraintLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical">
|
<android.support.v7.widget.RecyclerView
|
android:id="@+id/rv_popup"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toTopOf="@id/image_close">
|
</android.support.v7.widget.RecyclerView>
|
|
<ImageView
|
android:id="@+id/image_close"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:src="@drawable/ic_close_black_48dp"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintLeft_toLeftOf="parent"
|
app:layout_constraintRight_toRightOf="parent"/>
|
</android.support.constraint.ConstraintLayout>
|
|
</android.support.v7.widget.CardView>
|