When location is disabled, dark theme and night light will show text and button to take the user to location page Fixes: 153115261 Fixes: 153115618 Test: manually turn off location and observe view Change-Id: I24be2f26a4c9e1b3f2a17e83e6f91cb7685f2e28
		
			
				
	
	
		
			60 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
<!-- Copyright (C) 2020 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"
 | 
						|
    android:id="@+id/request_background_location_permission"
 | 
						|
    android:layout_width="match_parent"
 | 
						|
    android:layout_height="wrap_content"
 | 
						|
    android:orientation="vertical">
 | 
						|
 | 
						|
    <LinearLayout
 | 
						|
        android:layout_width="match_parent"
 | 
						|
        android:paddingStart="8dp"
 | 
						|
        android:paddingEnd="10dp"
 | 
						|
        android:paddingTop="18dp"
 | 
						|
        android:paddingBottom="0dp"
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:orientation="horizontal">
 | 
						|
 | 
						|
        <ImageView
 | 
						|
            android:layout_width="40dp"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:src="@drawable/ic_settings_location"
 | 
						|
            android:tint="?android:attr/colorAccent"/>
 | 
						|
 | 
						|
        <TextView
 | 
						|
            android:layout_width="wrap_content"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:layout_marginStart="24dp"
 | 
						|
            android:paddingRight="2dp"
 | 
						|
            android:gravity="center_vertical"
 | 
						|
            android:text="@string/twilight_mode_location_off_dialog_message"
 | 
						|
            android:textAppearance="?attr/textAppearanceSubtitle1"
 | 
						|
            android:textSize="16sp"
 | 
						|
            android:textColor="?android:attr/textColorPrimary"/>
 | 
						|
 | 
						|
    </LinearLayout>
 | 
						|
 | 
						|
    <Button
 | 
						|
        android:id="@+id/go_to_location_setting"
 | 
						|
        android:layout_width="wrap_content"
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:text="@string/twilight_mode_launch_location"
 | 
						|
        style="@style/Widget.AppCompat.Button.Borderless.Colored"
 | 
						|
        android:layout_gravity="end"/>
 | 
						|
 | 
						|
</LinearLayout> |