qs_core_tips_dialog.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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="wrap_content"
  5. android:layout_marginLeft="10dp"
  6. android:layout_marginRight="10dp"
  7. android:background="@drawable/qs_core_panel_bg_while"
  8. android:gravity="center"
  9. android:orientation="vertical">
  10. <TextView
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:layout_marginTop="20dp"
  14. android:gravity="center"
  15. android:text="提示"
  16. android:textColor="@color/qs_core_black"
  17. android:textSize="16sp"
  18. android:textStyle="bold" />
  19. <TextView
  20. android:id="@+id/qs_core_tv_content"
  21. android:layout_width="match_parent"
  22. android:layout_height="wrap_content"
  23. android:layout_marginTop="10dp"
  24. android:gravity="center"
  25. android:text="提示内容"
  26. android:textColor="@color/qs_core_black"
  27. android:textSize="12sp" />
  28. <View
  29. android:layout_width="match_parent"
  30. android:layout_height="0.5dp"
  31. android:layout_marginTop="20dp"
  32. android:background="@color/qs_core_gray_30" />
  33. <TextView
  34. android:id="@+id/qs_core_tv_confirm"
  35. android:layout_width="match_parent"
  36. android:layout_height="40dp"
  37. android:gravity="center"
  38. android:text="确定"
  39. android:textColor="@color/qs_core_blue"
  40. android:textSize="16sp" />
  41. </LinearLayout>