jmuser_realname.xml 1017 B

123456789101112131415161718192021222324252627
  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. <com.jmhy.sdk.view.CornerCompatView
  9. android:id="@+id/content"
  10. android:layout_width="@dimen/jm_realname_width"
  11. android:layout_height="@dimen/jm_realname_height"
  12. app:jm_radius="@dimen/jm_webview_radius"
  13. android:background="@color/jmfont_red">
  14. <WebView
  15. android:id="@+id/webview"
  16. android:layout_width="match_parent"
  17. android:layout_height="match_parent" />
  18. <com.jmhy.sdk.view.GifImageView
  19. android:id="@+id/gif"
  20. android:layout_width="240dp"
  21. android:layout_height="240dp"
  22. android:layout_gravity="center" />
  23. </com.jmhy.sdk.view.CornerCompatView>
  24. </LinearLayout>