- use a white background for being in line with the Material Theme - fix padding so that the edge effect is showing full width See bug: #13140648 Settings needs to support the new Quantum Paper theme Change-Id: Iea1cf6b104ee8bf5f311f7d3485d0500884dc57a
		
			
				
	
	
		
			86 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
<!-- Copyright (C) 2010 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:orientation="vertical"
 | 
						|
    android:scrollbars="vertical"
 | 
						|
    android:background="@android:color/white">
 | 
						|
 | 
						|
    <ScrollView
 | 
						|
        android:layout_width="match_parent"
 | 
						|
        android:layout_height="match_parent"
 | 
						|
        android:scrollbarStyle="outsideOverlay"
 | 
						|
        android:fillViewport="true">
 | 
						|
 | 
						|
        <LinearLayout
 | 
						|
            android:layout_width="match_parent"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:orientation="vertical"
 | 
						|
            android:paddingStart="?android:attr/listPreferredItemPaddingStart"
 | 
						|
            android:paddingEnd="?android:attr/listPreferredItemPaddingEnd">
 | 
						|
 | 
						|
            <View
 | 
						|
                android:paddingTop="53dip"
 | 
						|
                android:layout_width="match_parent"
 | 
						|
                android:layout_height="1dip"
 | 
						|
                android:background="#ff404040"
 | 
						|
                />
 | 
						|
 | 
						|
            <EditText android:id="@+id/owner_info_nickname"
 | 
						|
                android:layout_width="match_parent"
 | 
						|
                android:layout_height="wrap_content"
 | 
						|
                android:layout_marginTop="8dip"
 | 
						|
                android:gravity="top"
 | 
						|
                android:hint="@string/user_nickname"
 | 
						|
                android:inputType="textCapWords"
 | 
						|
            />
 | 
						|
 | 
						|
            <CheckBox android:id="@+id/show_owner_info_on_lockscreen_checkbox"
 | 
						|
                android:layout_width="match_parent"
 | 
						|
                android:layout_height="64dip"
 | 
						|
                android:gravity="center_vertical"
 | 
						|
                android:layout_marginTop="8dip"
 | 
						|
                android:text="@string/show_owner_info_on_lockscreen_label"
 | 
						|
                android:textAppearance="?android:attr/textAppearanceMedium"
 | 
						|
                android:textColor="?android:attr/textColorSecondary"
 | 
						|
            />
 | 
						|
 | 
						|
            <View
 | 
						|
                android:layout_width="match_parent"
 | 
						|
                android:layout_height="1dip"
 | 
						|
                android:background="#ff404040"
 | 
						|
                />
 | 
						|
 | 
						|
            <EditText android:id="@+id/owner_info_edit_text"
 | 
						|
                android:layout_width="match_parent"
 | 
						|
                android:layout_height="wrap_content"
 | 
						|
                android:layout_marginStart="62dip"
 | 
						|
                android:layout_marginTop="40dip"
 | 
						|
                android:gravity="top"
 | 
						|
                android:hint="@string/owner_info_settings_edit_text_hint"
 | 
						|
                android:lines="8"
 | 
						|
                android:maxLines="8"
 | 
						|
                android:inputType="textMultiLine|textCapSentences"
 | 
						|
            />
 | 
						|
 | 
						|
        </LinearLayout>
 | 
						|
 | 
						|
    </ScrollView>
 | 
						|
 | 
						|
</LinearLayout>
 | 
						|
 |