12345678910111213141516171819202122232425262728293031 |
- <?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:id="@+id/back_view"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center"
- android:orientation="vertical">
- <com.jmhy.sdk.view.CornerCompatView
- android:id="@+id/content"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/jm_transparent"
- app:jm_radius="@dimen/jm_notice_radius">
- <WebView
- android:id="@+id/webview"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/jm_transparent"/>
- <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>
- </LinearLayout>
|