Move scrollview to be the parent view.

In this cl, scroll view was moved to be the parent view for the
entire UI rather than only for a subset.

Bug: 32009766
Test: visual
Change-Id: I9aa8bb88cb39e1ca51737ec88640cc08910c4aef
This commit is contained in:
jackqdyulei
2016-10-18 13:32:55 -07:00
parent c33b78df9c
commit 13bf790604

View File

@@ -14,8 +14,13 @@
limitations under the License. limitations under the License.
--> -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:settings="http://schemas.android.com/apk/res-auto" xmlns:settings="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:paddingStart="?android:attr/listPreferredItemPaddingStart" android:paddingStart="?android:attr/listPreferredItemPaddingStart"
@@ -27,13 +32,14 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:focusable="true" android:focusable="true"
android:orientation="vertical"> android:orientation="vertical">
<TextView <TextView
android:id="@+id/charge" android:id="@+id/charge"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge" android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="36sp" android:textSize="36sp"
android:textColor="?android:attr/colorAccent" /> android:textColor="?android:attr/colorAccent"/>
<TextView <TextView
android:id="@+id/estimation" android:id="@+id/estimation"
@@ -41,7 +47,7 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:paddingBottom="8dp" android:paddingBottom="8dp"
android:textAppearance="?android:attr/textAppearanceMedium" android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="?android:attr/textColorSecondary" /> android:textColor="?android:attr/textColorSecondary"/>
<com.android.settingslib.graph.UsageView <com.android.settingslib.graph.UsageView
android:id="@+id/battery_usage" android:id="@+id/battery_usage"
@@ -50,18 +56,14 @@
settings:sideLabels="@array/battery_labels" settings:sideLabels="@array/battery_labels"
android:colorAccent="?android:attr/colorAccent" android:colorAccent="?android:attr/colorAccent"
android:gravity="end" android:gravity="end"
settings:textColor="?android:attr/textColorSecondary" /> settings:textColor="?android:attr/textColorSecondary"/>
</LinearLayout> </LinearLayout>
<View <View
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="1dp" android:layout_height="1dp"
android:layout_marginTop="2dp" android:layout_marginTop="2dp"
android:background="?android:attr/listDivider" /> android:background="?android:attr/listDivider"/>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"
@@ -94,6 +96,6 @@
</LinearLayout> </LinearLayout>
</ScrollView> </LinearLayout>
</LinearLayout> </ScrollView>