popuplayout.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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:background="#ffffff"
  6. android:orientation="vertical"
  7. android:paddingLeft="10dp"
  8. android:paddingRight="10dp"
  9. android:paddingBottom="10dp"
  10. android:elevation="1dp"
  11. android:translationZ="4dp"
  12. android:outlineAmbientShadowColor="#B309101D"
  13. android:shadowColor="#aa22ff22"
  14. android:shadowRadius="10"
  15. android:shadowDx="0"
  16. android:shadowDy="0"
  17. android:outlineProvider="bounds"
  18. >
  19. <TextView
  20. android:id="@+id/tv_title"
  21. android:layout_width="match_parent"
  22. android:layout_height="wrap_content"
  23. android:textColor="#333333"
  24. android:textStyle="bold"
  25. android:text="权限使用说明"
  26. android:layout_marginTop="15dp"
  27. android:textSize="16sp" />
  28. <TextView
  29. android:id="@+id/tv_explanation"
  30. android:layout_width="match_parent"
  31. android:layout_height="wrap_content"
  32. android:textColor="#333333"
  33. android:layout_marginTop="15dp"
  34. android:lineSpacingMultiplier="1.2"
  35. android:text="拒绝或取消授权将影响以上功能的使用,不影响使用其他服务。"
  36. android:textSize="14sp" />
  37. <!-- <TextView-->
  38. <!-- android:id="@+id/tv_explanation"-->
  39. <!-- android:layout_width="match_parent"-->
  40. <!-- android:layout_height="wrap_content"-->
  41. <!-- android:padding="8dp"-->
  42. <!-- android:textColor="#2f2f31"-->
  43. <!-- android:text="xxx"-->
  44. <!-- android:textSize="16sp" />-->
  45. </LinearLayout>