OSDN Git Service

Fix focusability of battery history chart
authorJason Monk <jmonk@google.com>
Mon, 20 Jun 2016 15:04:43 +0000 (11:04 -0400)
committerJason Monk <jmonk@google.com>
Mon, 20 Jun 2016 15:04:43 +0000 (11:04 -0400)
Change-Id: I0bd0da84a08ed6e3c51da3dc6a68e878c5c0d3cd
Fixes: 29453492

res/layout/battery_history_detail.xml

index df6248d..e254711 100644 (file)
     android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
     android:orientation="vertical">
 
-    <TextView
-        android:id="@+id/charge"
+    <LinearLayout
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
-        android:textAppearance="?android:attr/textAppearanceLarge"
-        android:textSize="36sp"
-        android:textColor="?android:attr/colorAccent" />
+        android:focusable="true"
+        android:orientation="vertical">
+        <TextView
+            android:id="@+id/charge"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:textAppearance="?android:attr/textAppearanceLarge"
+            android:textSize="36sp"
+            android:textColor="?android:attr/colorAccent" />
 
-    <TextView
-        android:id="@+id/estimation"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:paddingBottom="8dp"
-        android:textAppearance="?android:attr/textAppearanceMedium"
-        android:textColor="?android:attr/textColorSecondary" />
+        <TextView
+            android:id="@+id/estimation"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:paddingBottom="8dp"
+            android:textAppearance="?android:attr/textAppearanceMedium"
+            android:textColor="?android:attr/textColorSecondary" />
 
-    <com.android.settingslib.graph.UsageView
-        android:id="@+id/battery_usage"
-        android:layout_width="match_parent"
-        android:layout_height="141dp"
-        settings:sideLabels="@array/battery_labels"
-        android:colorAccent="?android:attr/colorAccent"
-        android:gravity="end"
-        settings:textColor="?android:attr/textColorSecondary" />
+        <com.android.settingslib.graph.UsageView
+            android:id="@+id/battery_usage"
+            android:layout_width="match_parent"
+            android:layout_height="141dp"
+            settings:sideLabels="@array/battery_labels"
+            android:colorAccent="?android:attr/colorAccent"
+            android:gravity="end"
+            settings:textColor="?android:attr/textColorSecondary" />
+    </LinearLayout>
 
     <View
         android:layout_width="match_parent"