Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5999ea8f authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Move UsageGraph from SettingsLib to Settings."

parents 0c5e3854 c661098a
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -49,7 +49,7 @@
                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.settings.graph.UsageView
                android:id="@+id/battery_usage"
                android:id="@+id/battery_usage"
                android:layout_width="match_parent"
                android:layout_width="match_parent"
                android:layout_height="141dp"
                android:layout_height="141dp"
+1 −1
Original line number Original line Diff line number Diff line
@@ -32,7 +32,7 @@
        android:textSize="36sp"
        android:textSize="36sp"
        android:textColor="?android:attr/colorAccent" />
        android:textColor="?android:attr/colorAccent" />


    <com.android.settingslib.graph.UsageView
    <com.android.settings.graph.UsageView
        android:id="@+id/battery_usage"
        android:id="@+id/battery_usage"
        android:layout_width="match_parent"
        android:layout_width="match_parent"
        android:layout_height="141dp"
        android:layout_height="141dp"
+1 −1
Original line number Original line Diff line number Diff line
@@ -22,7 +22,7 @@
    android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
    android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
    android:orientation="vertical">
    android:orientation="vertical">


    <com.android.settingslib.graph.UsageView
    <com.android.settings.graph.UsageView
        android:id="@+id/data_usage"
        android:id="@+id/data_usage"
        android:layout_width="match_parent"
        android:layout_width="match_parent"
        android:layout_height="@dimen/data_usage_chart_height"
        android:layout_height="@dimen/data_usage_chart_height"
+20 −0
Original line number Original line Diff line number Diff line
<!--
    Copyright (C) 2016 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:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceSmall" />
+20 −0
Original line number Original line Diff line number Diff line
<!--
    Copyright (C) 2016 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:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceSmall" />
Loading