* New SetupWizard uses external/setupdesign (sud) and external/setupcompat (suc) to achieve the desired looks * It prevents proper previews when included in any app, though, so we better try achieving the same by manually styling the activities for 12 * This patch mimics the design by applying styles similar to the ones from sud, sometimes reusing parts taken from there Change-Id: Iccf588e5239aeb00645f97b095910986f32c52d0
19 lines
842 B
XML
19 lines
842 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:id="@+id/skipView"
|
|
style="@style/SudSecondaryButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="40dp"
|
|
android:background="?android:selectableItemBackground"
|
|
android:text="@string/restore_storage_skip"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|