1. Certain accessibility settings are shown on a separate screen with a toggle switch and a description. Sometimes the description does not fit the screen. The preference framework is using a list view for holding the description item. This list view was disabled, thus not scrolling (done to avoid drawable state change on click). Now the list view is enabled and the drawable state change on click problem is solved by setting the selector and divider drawables to a transparent one. 2. The layout for the list item that shows the feature description had an unnecessary linear layout. bug:8632146 Change-Id: Ib81a8513158d5b8d90fa80f57720c8590022ae1a
25 lines
1006 B
XML
25 lines
1006 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2011 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.
|
|
-->
|
|
|
|
<TextView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/summary"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
android:padding="16dip" />
|