activity_setup.xml raw

   1  <?xml version="1.0" encoding="utf-8"?>
   2  <RelativeLayout 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  
   7      <FrameLayout
   8          android:id="@+id/content"
   9          android:layout_width="match_parent"
  10          android:layout_height="wrap_content"
  11          android:layout_centerInParent="true" />
  12  
  13      <Button
  14          android:id="@+id/continueBtn"
  15          style="@style/Widget.Material3.Button.TextButton"
  16          android:layout_width="wrap_content"
  17          android:layout_height="wrap_content"
  18          android:layout_alignParentEnd="true"
  19          android:layout_alignParentBottom="true"
  20          android:layout_margin="?dialogPreferredPadding"
  21          android:text="@string/setup_continue"
  22          tools:ignore="RelativeOverlap" />
  23  
  24      <Button
  25          android:id="@+id/skipBtn"
  26          style="@style/Widget.Material3.Button.TextButton"
  27          android:layout_width="wrap_content"
  28          android:layout_height="wrap_content"
  29          android:layout_alignParentStart="true"
  30          android:layout_alignParentBottom="true"
  31          android:layout_margin="?dialogPreferredPadding"
  32          android:text="@string/setup_skip"
  33          android:textColor="?android:attr/textColorSecondary" />
  34  </RelativeLayout>