fragment_case.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical"
  6. >
  7. <RelativeLayout
  8. android:id="@+id/ll_case"
  9. android:layout_width="match_parent"
  10. android:layout_height="@dimen/margin48dp"
  11. android:background="@color/blue_black">
  12. <ImageView
  13. android:id="@+id/iv_back_case"
  14. android:layout_width="@dimen/margin20dp"
  15. android:layout_height="@dimen/margin20dp"
  16. android:src="@drawable/ic_imagepicker_arrow_left"
  17. android:layout_alignParentLeft="true"
  18. android:layout_centerInParent="true"
  19. android:layout_marginLeft="10dp"
  20. />
  21. <TextView
  22. android:id="@+id/tv_title_case"
  23. android:layout_width="wrap_content"
  24. android:layout_height="match_parent"
  25. android:gravity="center"
  26. android:textSize="@dimen/textsize_20"
  27. android:textColor="@color/white"
  28. android:layout_centerInParent="true"
  29. />
  30. </RelativeLayout>
  31. <WebView
  32. android:layout_marginTop="@dimen/margin1dp"
  33. android:id="@+id/wv_case"
  34. android:layout_width="match_parent"
  35. android:layout_height="wrap_content"
  36. />
  37. </LinearLayout>