dialog_home_activity.xml
1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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="wrap_content"
android:orientation="vertical">
<View
android:id="@+id/view_bg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#77555555"></View>
<LinearLayout
android:id="@+id/ll_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="120dp"
android:gravity="center"
android:orientation="vertical">
<com.chudiangameplay.android.ui.view.RoundImageView
android:id="@+id/iv_img"
android:layout_width="300dp"
android:layout_height="340dp"
android:scaleType="centerCrop"
app:radius="8dp"
app:type="round" />
<ImageView
android:id="@+id/iv_close"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginTop="30dp"
android:src="@drawable/ico_dialog_close" />
</LinearLayout>
</RelativeLayout>