1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout 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"
- android:orientation="horizontal"
- android:id="@+id/back_view"
- android:background="@color/jmtransparent_background">
- <com.jmhy.sdk.view.CornerCompatView
- android:id="@+id/content"
- android:layout_width="@dimen/jm_red_gift_width"
- android:layout_height="match_parent"
- app:jm_radius="@dimen/jm_webview_radius"
- android:background="@color/jmfont_white">
- <WebView
- android:id="@+id/webview"
- android:layout_width="match_parent"
- android:layout_height="match_parent"/>
- <com.jmhy.sdk.view.GifImageView
- android:id="@+id/gif"
- android:layout_width="240dp"
- android:layout_height="240dp"
- android:layout_gravity="center"/>
- </com.jmhy.sdk.view.CornerCompatView>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <ImageView
- android:layout_centerVertical="true"
- android:id="@+id/iv_left_colse"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="@drawable/jm_float_left_back"/>
- <ImageView
- android:id="@+id/iv_right_colse"
- android:layout_marginRight="10dp"
- android:layout_width="45dp"
- android:layout_height="45dp"
- android:background="@drawable/jm_close_btn"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"/>
- </RelativeLayout>
- </LinearLayout>
|