jmuserp.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  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:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:gravity="center"
  7. android:orientation="vertical"
  8. android:id="@+id/back_view">
  9. <com.jmhy.sdk.view.CornerCompatView
  10. android:layout_width="@dimen/jm_pay_width"
  11. android:layout_height="@dimen/jm_pay_height"
  12. app:jm_radius="@dimen/jm_login_radius"
  13. android:background="@color/jmfont_white">
  14. <WebView
  15. android:id="@+id/webview"
  16. android:layout_width="match_parent"
  17. android:layout_height="match_parent"/>
  18. <ImageView
  19. android:id="@+id/ivback"
  20. android:layout_width="40dp"
  21. android:layout_height="40dp"
  22. android:layout_gravity="end"
  23. android:scaleType="centerInside"
  24. android:src="@drawable/jm_close"/>
  25. <com.jmhy.sdk.view.GifImageView
  26. android:id="@+id/gif"
  27. android:layout_width="240dp"
  28. android:layout_height="240dp"
  29. android:layout_gravity="center"/>
  30. </com.jmhy.sdk.view.CornerCompatView>
  31. </LinearLayout>