summaryrefslogtreecommitdiffstats
path: root/res/layout/ignore_optimizations_content.xml
diff options
context:
space:
mode:
authorJason Monk <jmonk@google.com>2015-06-18 15:56:21 -0400
committerJason Monk <jmonk@google.com>2015-06-18 15:56:21 -0400
commit66aa964e2a6b89273518dadd0a8a4ecf7094cc88 (patch)
tree0cf1de7dd314c7be226676984f249cb0fe9ba37b /res/layout/ignore_optimizations_content.xml
parent2c55f738c4336a3f379f94f4142c20a473ae3a9a (diff)
downloadpackages_apps_Settings-66aa964e2a6b89273518dadd0a8a4ecf7094cc88.zip
packages_apps_Settings-66aa964e2a6b89273518dadd0a8a4ecf7094cc88.tar.gz
packages_apps_Settings-66aa964e2a6b89273518dadd0a8a4ecf7094cc88.tar.bz2
Fix ListView being too eager too scroll
ListView is always too eager to scroll, so just stop using it. Bug: 21853796 Change-Id: Id37d89b0312597a9fb65a33f151af34b3f395d91
Diffstat (limited to 'res/layout/ignore_optimizations_content.xml')
-rw-r--r--res/layout/ignore_optimizations_content.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/res/layout/ignore_optimizations_content.xml b/res/layout/ignore_optimizations_content.xml
new file mode 100644
index 0000000..4641f0e
--- /dev/null
+++ b/res/layout/ignore_optimizations_content.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2015 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:paddingTop="8dp"
+ android:paddingBottom="8dp"
+ android:orientation="vertical">
+
+ <include
+ layout="@layout/radio_with_summary"
+ android:id="@+id/ignore_on" />
+
+ <include
+ layout="@layout/radio_with_summary"
+ android:id="@+id/ignore_off" />
+
+</LinearLayout>