- Add Fix connectivity toggle in menu item - Show "Resetting your internet..." when recovering - Screenshot: https://screenshot.googleplex.com/BPyRADfNUoPE8Dc Bug: 172297799 Test: manual test - make RunSettingsRoboTests ROBOTEST_FILTER=NetworkProviderSettingsTest Change-Id: I27594d24659ca281e224f86accc20d49514d5001
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
<!--
 | 
						|
  ~ Copyright (C) 2021 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:layout_width="match_parent"
 | 
						|
    android:layout_height="wrap_content"
 | 
						|
    android:gravity="center_horizontal"
 | 
						|
    android:orientation="vertical">
 | 
						|
 | 
						|
    <LinearLayout
 | 
						|
        android:layout_width="wrap_content"
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:layout_marginStart="@dimen/content_margin_left"
 | 
						|
        android:layout_marginEnd="@dimen/content_margin_left"
 | 
						|
        android:layout_marginTop="@dimen/description_margin_top"
 | 
						|
        android:layout_marginBottom="@dimen/description_margin_top"
 | 
						|
        android:gravity="center_vertical"
 | 
						|
        android:orientation="horizontal">
 | 
						|
 | 
						|
        <ProgressBar
 | 
						|
            android:layout_width="wrap_content"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:layout_marginEnd="@dimen/reset_internet_ring_progress_right_margin"
 | 
						|
            style="?android:attr/progressBarStyleSmallTitle"/>
 | 
						|
 | 
						|
        <TextView
 | 
						|
            android:layout_width="wrap_content"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:text="@string/resetting_internet_text"
 | 
						|
            android:textAppearance="?android:attr/textAppearanceSmall"/>
 | 
						|
    </LinearLayout>
 | 
						|
</LinearLayout>
 |