1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2019 The Android Open Source Project 3 Licensed under the Apache License, Version 2.0 (the "License"); 4 you may not use this file except in compliance with the License. 5 You may obtain a copy of the License at 6 http://www.apache.org/licenses/LICENSE-2.0 7 Unless required by applicable law or agreed to in writing, software 8 distributed under the License is distributed on an "AS IS" BASIS, 9 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 10 See the License for the specific language governing permissions and 11 limitations under the License. 12--> 13<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 14 android:orientation="vertical" 15 android:layout_width="match_parent" 16 android:layout_height="match_parent"> 17 <TextView 18 android:id="@+id/night_mode_instruction" 19 android:layout_width="match_parent" 20 android:layout_height="0dp" 21 android:layout_weight="1" 22 android:gravity="center" 23 android:textSize="50dip" /> 24 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 25 android:layout_width="match_parent" 26 android:layout_height="0dp" 27 android:layout_weight="2" 28 android:orientation="horizontal"> 29 <TextView 30 android:id="@+id/current_night_mode_value_title" 31 android:layout_width="0dp" 32 android:layout_weight="2" 33 android:layout_height="match_parent" 34 android:gravity="center" 35 android:text="@string/current_night_mode_value_title" 36 android:textSize="50dip" /> 37 <TextView 38 android:id="@+id/current_night_mode_value" 39 android:layout_width="0dp" 40 android:layout_weight="1" 41 android:layout_height="match_parent" 42 android:gravity="center" 43 android:textSize="50dip" /> 44 </LinearLayout> 45 <include layout="@layout/pass_fail_buttons" /> 46</LinearLayout> 47