Bug: 394542699 Test: manual Test: atest SettingsRoboTests:com.android.settings.localepicker.LocaleListEditorTest Flag: EXEMPT refactor Change-Id: I694e92cb7f61d208c36cb4b40aa3182cd838d5bb
		
			
				
	
	
		
			53 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
<!-- Copyright (C) 2016 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.
 | 
						|
-->
 | 
						|
 | 
						|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | 
						|
             android:layout_width="match_parent"
 | 
						|
             android:layout_height="match_parent"
 | 
						|
             android:layoutDirection="locale"
 | 
						|
             android:textDirection="locale">
 | 
						|
 | 
						|
    <LinearLayout
 | 
						|
        android:layout_width="match_parent"
 | 
						|
        android:layout_height="match_parent"
 | 
						|
        android:clipToPadding="true"
 | 
						|
        android:clipChildren="true"
 | 
						|
        android:orientation="vertical">
 | 
						|
 | 
						|
        <androidx.recyclerview.widget.RecyclerView
 | 
						|
            android:id="@+id/dragList"
 | 
						|
            android:layout_width="match_parent"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:scrollbars="none"/>
 | 
						|
 | 
						|
        <Button
 | 
						|
            android:id="@+id/add_language"
 | 
						|
            android:layout_width="match_parent"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:paddingStart="?android:attr/listPreferredItemPaddingStart"
 | 
						|
            android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
 | 
						|
            android:drawableStart="@drawable/ic_add_24dp"
 | 
						|
            android:drawablePadding="32dp"
 | 
						|
            android:textAlignment="textStart"
 | 
						|
            android:text="@string/add_a_language"
 | 
						|
            style="@style/Base.Widget.AppCompat.Button.Borderless"
 | 
						|
            android:textAppearance="?android:attr/textAppearanceListItem"
 | 
						|
            android:visibility="gone"/>
 | 
						|
 | 
						|
    </LinearLayout>
 | 
						|
 | 
						|
</FrameLayout>
 |