Make items in Advanced battery page unclickable.

Because these items only display info and have no click action:
1. foreground time item
2. background time item
3. battery usage item

Bug: 62423725
Test: Build
Change-Id: I8d15be13953c73fce4d5f42711e186673673a036
This commit is contained in:
jackqdyulei
2017-06-30 11:11:16 -07:00
parent 2354fae941
commit a66363a787

View File

@@ -39,15 +39,18 @@
<Preference
android:key="app_usage_foreground"
android:title="@string/battery_detail_foreground"/>
android:title="@string/battery_detail_foreground"
android:selectable="false"/>
<Preference
android:key="app_usage_background"
android:title="@string/battery_detail_background"/>
android:title="@string/battery_detail_background"
android:selectable="false"/>
<Preference
android:key="app_power_usage"
android:title="@string/battery_detail_power_usage"/>
android:title="@string/battery_detail_power_usage"
android:selectable="false"/>
</PreferenceCategory>