| Ricardo Cerqueira | 8331602 | 2016-08-10 12:33:05 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | Copyright (C) 2015 The CyanogenMod Project |
| Timi Rautamäki | 5e2f7f2 | 2021-08-21 08:58:14 +0000 | [diff] [blame^] | 4 | Copyright (C) 2017-2021 The LineageOS Project |
| Ricardo Cerqueira | 8331602 | 2016-08-10 12:33:05 +0100 | [diff] [blame] | 5 | |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | --> |
| Timi Rautamäki | 5e2f7f2 | 2021-08-21 08:58:14 +0000 | [diff] [blame^] | 18 | <com.google.android.setupdesign.GlifLayout |
| 19 | xmlns:android="http://schemas.android.com/apk/res/android" |
| 20 | xmlns:app="http://schemas.android.com/apk/res-auto" |
| 21 | android:id="@+id/setup_wizard_layout" |
| Ricardo Cerqueira | 8331602 | 2016-08-10 12:33:05 +0100 | [diff] [blame] | 22 | android:layout_width="match_parent" |
| Timi Rautamäki | 5e2f7f2 | 2021-08-21 08:58:14 +0000 | [diff] [blame^] | 23 | android:layout_height="match_parent"> |
| Ricardo Cerqueira | 8331602 | 2016-08-10 12:33:05 +0100 | [diff] [blame] | 24 | |
| Timi Rautamäki | 5e2f7f2 | 2021-08-21 08:58:14 +0000 | [diff] [blame^] | 25 | <LinearLayout |
| 26 | android:orientation="vertical" |
| Ricardo Cerqueira | 8331602 | 2016-08-10 12:33:05 +0100 | [diff] [blame] | 27 | android:layout_width="match_parent" |
| Timi Rautamäki | 5e2f7f2 | 2021-08-21 08:58:14 +0000 | [diff] [blame^] | 28 | android:layout_height="match_parent"> |
| Ricardo Cerqueira | 8331602 | 2016-08-10 12:33:05 +0100 | [diff] [blame] | 29 | |
| Timi Rautamäki | 5e2f7f2 | 2021-08-21 08:58:14 +0000 | [diff] [blame^] | 30 | <FrameLayout android:id="@+id/page" |
| 31 | android:layout_width="match_parent" |
| 32 | android:layout_height="0dp" |
| 33 | android:layout_weight="1"> |
| Ricardo Cerqueira | 8331602 | 2016-08-10 12:33:05 +0100 | [diff] [blame] | 34 | |
| Timi Rautamäki | 5e2f7f2 | 2021-08-21 08:58:14 +0000 | [diff] [blame^] | 35 | <ScrollView android:layout_width="match_parent" |
| 36 | android:layout_height="match_parent" |
| 37 | android:fillViewport="true"> |
| Ricardo Cerqueira | 8331602 | 2016-08-10 12:33:05 +0100 | [diff] [blame] | 38 | |
| Timi Rautamäki | 5e2f7f2 | 2021-08-21 08:58:14 +0000 | [diff] [blame^] | 39 | <LinearLayout |
| 40 | android:orientation="vertical" |
| Ricardo Cerqueira | 8331602 | 2016-08-10 12:33:05 +0100 | [diff] [blame] | 41 | android:layout_width="match_parent" |
| 42 | android:layout_height="wrap_content" |
| Timi Rautamäki | 5e2f7f2 | 2021-08-21 08:58:14 +0000 | [diff] [blame^] | 43 | android:paddingStart="@dimen/content_margin_left" |
| 44 | android:paddingEnd="@dimen/content_margin_left" |
| 45 | style="@style/SudContentFrame"> |
| Ricardo Cerqueira | 8331602 | 2016-08-10 12:33:05 +0100 | [diff] [blame] | 46 | |
| Timi Rautamäki | 5e2f7f2 | 2021-08-21 08:58:14 +0000 | [diff] [blame^] | 47 | <TextView |
| 48 | android:layout_width="match_parent" |
| 49 | android:layout_height="wrap_content" |
| 50 | android:text="@string/lockscreen_setup_summary" |
| 51 | style="@style/SudItemTitle.GlifDescription" /> |
| Ricardo Cerqueira | 8331602 | 2016-08-10 12:33:05 +0100 | [diff] [blame] | 52 | |
| Timi Rautamäki | 5e2f7f2 | 2021-08-21 08:58:14 +0000 | [diff] [blame^] | 53 | <Button |
| 54 | android:id="@+id/setup_lockscreen" |
| 55 | android:layout_width="match_parent" |
| 56 | android:layout_height="wrap_content" |
| 57 | android:layout_marginTop="24dp" |
| 58 | android:text="@string/lockscreen_setup_screen_lock_setup" |
| 59 | style="@style/SudGlifButton.Primary" /> |
| Chirayu Desai | 0ebdabe | 2019-09-13 01:12:59 +0530 | [diff] [blame] | 60 | |
| Timi Rautamäki | 5e2f7f2 | 2021-08-21 08:58:14 +0000 | [diff] [blame^] | 61 | </LinearLayout> |
| 62 | </ScrollView> |
| 63 | </FrameLayout> |
| Chirayu Desai | 0ebdabe | 2019-09-13 01:12:59 +0530 | [diff] [blame] | 64 | |
| Timi Rautamäki | 5e2f7f2 | 2021-08-21 08:58:14 +0000 | [diff] [blame^] | 65 | <com.google.android.setupdesign.view.NavigationBar |
| 66 | android:id="@+id/navigation_bar" |
| 67 | style="@style/SudNavBarTheme" |
| 68 | android:layout_width="match_parent" |
| 69 | android:layout_height="@dimen/sud_navbar_height" /> |
| 70 | |
| 71 | </LinearLayout> |
| 72 | </com.google.android.setupdesign.GlifLayout> |