jmnotice_full_screen.xml 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:id="@+id/back_view"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:gravity="center"
  8. android:orientation="vertical">
  9. <com.jmhy.sdk.view.CornerCompatView
  10. android:id="@+id/content"
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. android:background="@color/jm_transparent"
  14. app:jm_radius="@dimen/jm_notice_radius">
  15. <WebView
  16. android:id="@+id/webview"
  17. android:layout_width="match_parent"
  18. android:layout_height="match_parent"
  19. android:background="@color/jm_transparent"/>
  20. <com.jmhy.sdk.view.GifImageView
  21. android:id="@+id/gif"
  22. android:layout_width="240dp"
  23. android:layout_height="240dp"
  24. android:layout_gravity="center"/>
  25. </com.jmhy.sdk.view.CornerCompatView>
  26. </LinearLayout>