jm_dialog_ios.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="@drawable/jm_dialog_ios_bg"
  7. xmlns:tools="http://schemas.android.com/tools">
  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:textColor="@color/jmfont_black"
  18. android:textSize="16sp"
  19. android:textStyle="bold"
  20. android:text="@string/jm_dialog_title"/>
  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:gravity="center"
  39. android:layout_gravity="center_horizontal"
  40. android:textColor="@color/jmfont_blues"
  41. android:textSize="16sp"
  42. android:text="@string/jm_confirm"/>
  43. </LinearLayout>