20 lines
811 B
XML
20 lines
811 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<com.ubtech.view.widget.UFrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:gravity="center"
|
|
android:id="@+id/rootView"
|
|
android:background="@color/translucent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<View
|
|
android:id="@+id/maskView"
|
|
android:background="@color/mask"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<FrameLayout
|
|
android:layout_gravity="center"
|
|
android:id="@+id/centerCardView"
|
|
android:clickable="true"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
</com.ubtech.view.widget.UFrameLayout>
|