fragment_setup_draw_over_other_apps.xml raw

   1  <?xml version="1.0" encoding="utf-8"?>
   2  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   3      xmlns:app="http://schemas.android.com/apk/res-auto"
   4      android:orientation="vertical"
   5      android:layout_width="match_parent"
   6      android:layout_height="wrap_content"
   7      android:layout_marginBottom="?actionBarSize"
   8      android:layout_gravity="center"
   9      android:padding="?dialogPreferredPadding">
  10  
  11      <ImageView
  12          android:layout_width="@dimen/setup_icon_size"
  13          android:layout_height="@dimen/setup_icon_size"
  14          android:layout_gravity="center"
  15          android:layout_marginBottom="?dialogPreferredPadding"
  16          android:contentDescription="@null"
  17          app:srcCompat="@drawable/ic_color_draw_over_other_apps" />
  18  
  19      <TextView
  20          android:layout_width="match_parent"
  21          android:layout_height="wrap_content"
  22          android:layout_marginBottom="?dialogPreferredPadding"
  23          android:textAppearance="@style/TextAppearance.Material3.DisplayMedium"
  24          android:breakStrategy="balanced"
  25          android:text="@string/setup_draw_over_other_apps" />
  26  
  27      <TextView
  28          android:layout_width="match_parent"
  29          android:layout_height="wrap_content"
  30          android:textAppearance="@style/TextAppearance.Material3.BodyMedium"
  31          android:text="@string/setup_draw_over_other_apps_summary" />
  32  </LinearLayout>