51 lines
2.2 KiB
XML
51 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout 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="match_parent">
|
|
<View
|
|
android:id="@+id/view_click"
|
|
android:background="#88000000"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_gravity="center"
|
|
android:id="@+id/cardView"
|
|
android:layout_width="@dimen/dp516"
|
|
android:layout_height="@dimen/dp322"
|
|
android:foreground="?android:attr/selectableItemBackground"
|
|
app:cardBackgroundColor="#fff"
|
|
app:cardCornerRadius="@dimen/dp20"
|
|
app:cardElevation="0dp">
|
|
<RelativeLayout
|
|
android:background="@color/bg_white"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<TextView
|
|
android:textSize="@dimen/dp24"
|
|
android:textColor="#4a4a4a"
|
|
android:id="@+id/tv_shop_popup_des"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp130"
|
|
android:layout_centerHorizontal="true"/>
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="@dimen/dp20"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_centerHorizontal="true">
|
|
<TextView
|
|
android:id="@+id/tv_popu_cancel"
|
|
android:layout_marginRight="@dimen/dp28"
|
|
android:text="@string/cancel"
|
|
style="@style/shop_popw_text_style"/>
|
|
<TextView
|
|
android:id="@+id/tv_popu_ok"
|
|
android:text="@string/open"
|
|
style="@style/shop_popw_text_style"/>
|
|
</LinearLayout>
|
|
</RelativeLayout>
|
|
</androidx.cardview.widget.CardView>
|
|
</FrameLayout>
|