jm_dialog_ios.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="@drawable/jm_dialog_ios_bg"
  7. android:orientation="vertical">
  8. <LinearLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:layout_margin="20dp"
  12. android:gravity="center_horizontal"
  13. android:orientation="vertical">
  14. <TextView
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:text="@string/jm_dialog_title"
  18. android:textColor="@color/jmfont_black"
  19. android:textSize="16sp"
  20. android:textStyle="bold"/>
  21. <TextView
  22. android:id="@+id/content"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:layout_marginTop="4dp"
  26. android:textColor="@color/jmfont_black"
  27. android:textSize="12sp"
  28. tools:text="@string/http_rror_msg"/>
  29. </LinearLayout>
  30. <View
  31. android:layout_width="match_parent"
  32. android:layout_height="1px"
  33. android:background="@color/jm_dialog_line"/>
  34. <TextView
  35. android:id="@+id/confirm"
  36. android:layout_width="match_parent"
  37. android:layout_height="40dp"
  38. android:layout_gravity="center_horizontal"
  39. android:gravity="center"
  40. android:text="@string/jm_confirm"
  41. android:textColor="@color/jmfont_blues"
  42. android:textSize="16sp"/>
  43. </LinearLayout>