Resubmiting reverted CL Ia1f84669090e04b3a2aaac82bb5971032d74a125. Reson: Bug was found in another CL (in this topic) Test: Treehugger Bug: 268682423 Change-Id: I0fead8915b2bb6281e29b32f7426c35b0138b10e
103 lines
4.0 KiB
XML
103 lines
4.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2022 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
|
|
android:background="@drawable/trackpad_gesture_dialog_bg"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<androidx.viewpager.widget.ViewPager
|
|
android:id="@+id/viewpager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="378dp"/>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="48dp"
|
|
android:layout_marginStart="8dip"
|
|
android:layout_marginEnd="8dip"
|
|
android:layout_marginTop="6dip"
|
|
android:layout_marginBottom="6dip"
|
|
android:layout_weight="1">
|
|
|
|
<Button
|
|
android:id="@+id/button_skip"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="6dip"
|
|
android:layout_marginBottom="6dip"
|
|
android:layout_marginStart="8dip"
|
|
android:layout_alignParentStart="true"
|
|
android:paddingVertical="14dp"
|
|
android:drawablePadding="9dp"
|
|
style="@style/ModifierKeyButtonCancel"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:text="@string/gesture_button_skip"/>
|
|
|
|
<Button
|
|
android:id="@+id/button_restart"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="6dip"
|
|
android:layout_marginBottom="6dip"
|
|
android:layout_marginStart="8dip"
|
|
android:layout_alignParentStart="true"
|
|
android:paddingVertical="14dp"
|
|
android:drawablePadding="9dp"
|
|
style="@style/ModifierKeyButtonCancel"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:text="@string/gesture_button_restart"/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/viewGroup"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="48dp"
|
|
android:gravity="center"/>
|
|
|
|
<Button
|
|
android:id="@+id/button_next"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="6dip"
|
|
android:layout_marginBottom="6dip"
|
|
android:layout_marginEnd="8dip"
|
|
android:layout_alignParentEnd="true"
|
|
android:paddingVertical="14dp"
|
|
android:drawablePadding="9dp"
|
|
style="@style/ModifierKeyButtonDone"
|
|
android:textColor="?androidprv:attr/materialColorOnPrimary"
|
|
android:text="@string/gesture_button_next"/>
|
|
|
|
<Button
|
|
android:id="@+id/button_done"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="6dip"
|
|
android:layout_marginBottom="6dip"
|
|
android:layout_marginEnd="8dip"
|
|
android:layout_alignParentEnd="true"
|
|
android:paddingVertical="14dp"
|
|
android:drawablePadding="9dp"
|
|
style="@style/ModifierKeyButtonDone"
|
|
android:textColor="?androidprv:attr/materialColorOnPrimary"
|
|
android:text="@string/gesture_button_done"/>
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|