Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 22f5b479 authored by Maurice Lam's avatar Maurice Lam Committed by Android (Google) Code Review
Browse files

Merge "Center find-sensor graphic in landscape" into nyc-mr1-dev

parents 95f905b3 8a26bfb1
Loading
Loading
Loading
Loading
+40 −15
Original line number Diff line number Diff line
@@ -20,24 +20,46 @@
    android:id="@+id/setup_wizard_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout="@layout/suw_glif_blank_template"
    style="?attr/fingerprint_layout_theme">

    <LinearLayout
        style="@style/SuwContentFrame"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal"
        android:clipToPadding="false"
        android:clipChildren="false"
        android:paddingBottom="0dp">
        android:clipChildren="false">

        <LinearLayout
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="match_parent"
            android:layout_marginStart="?attr/suwMarginSides"
            android:layout_marginBottom="@dimen/suw_content_frame_padding_bottom"
            android:orientation="vertical">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
                android:orientation="vertical">

                <ImageView
                    android:id="@+id/suw_layout_icon"
                    style="@style/SuwGlifIcon"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginStart="0dp"
                    android:layout_marginEnd="0dp"
                    android:src="@drawable/ic_lock" />

                <TextView
                    android:id="@+id/suw_layout_title"
                    style="@style/SuwGlifHeaderTitle"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginStart="0dp"
                    android:layout_marginEnd="0dp" />

                <TextView
                    style="@style/TextAppearance.FingerprintMessage"
                    android:layout_width="match_parent"
@@ -51,6 +73,9 @@
                    android:layout_height="wrap_content"
                    android:layout_marginTop="8dp"
                    android:text="@string/fingerprint_enroll_button_next" />

            </LinearLayout>

        </LinearLayout>

        <FrameLayout