dialog_tips.xml 1.04 KB
Newer Older
wjg committed
1 2
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
wjg committed
3
    android:id="@+id/layout_root"
wjg committed
4
    android:layout_width="@dimen/dialog_tip_width"
wjg committed
5 6 7 8 9 10
    android:layout_height="match_parent">
    <WebView
        android:id="@+id/web_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

.  
wjg committed
11
    <FrameLayout
wjg committed
12
        android:id="@+id/butn_close"
.  
wjg committed
13 14
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
wjg committed
15
        android:layout_alignParentEnd="true"
.  
wjg committed
16 17 18 19 20 21 22 23 24 25
        android:layout_marginStart="@dimen/dialog_close_margin"
        android:layout_marginTop="@dimen/dialog_close_margin"
        android:layout_marginEnd="@dimen/dialog_close_margin"
        android:layout_marginBottom="@dimen/dialog_close_margin"
        android:padding="20px">
        <ImageView
            android:layout_width="@dimen/ic_dialog_close"
            android:layout_height="@dimen/ic_dialog_close"
            android:src="@mipmap/chazi" />
    </FrameLayout>
wjg committed
26
</RelativeLayout>