70 lines
2.6 KiB
XML
70 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2018 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"
|
|
xmlns:settings="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
style="@style/SettingsBarChart">
|
|
|
|
<TextView
|
|
android:id="@+id/bar_chart_title"
|
|
style="@style/SettingsBarChartTitle"/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/bar_views_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="20dp"
|
|
android:gravity="center|bottom">
|
|
|
|
<com.android.settingslib.widget.BarView
|
|
android:id="@+id/bar_view1"
|
|
style="@style/SettingsBarViewStyle"
|
|
settings:barColor="@color/settings_bar_view_1_color"/>
|
|
<com.android.settingslib.widget.BarView
|
|
android:id="@+id/bar_view2"
|
|
style="@style/SettingsBarViewStyle"
|
|
settings:barColor="@color/settings_bar_view_2_color"/>
|
|
<com.android.settingslib.widget.BarView
|
|
android:id="@+id/bar_view3"
|
|
style="@style/SettingsBarViewStyle"
|
|
settings:barColor="@color/settings_bar_view_3_color"/>
|
|
<com.android.settingslib.widget.BarView
|
|
android:id="@+id/bar_view4"
|
|
style="@style/SettingsBarViewStyle"
|
|
settings:barColor="@color/settings_bar_view_4_color"/>
|
|
</LinearLayout>
|
|
|
|
<Button
|
|
android:id="@+id/bar_chart_details"
|
|
style="@style/SettingsBarChartDetailsButton"/>
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/empty_view"
|
|
style="@style/SettingsBarChartEmptyText"/>
|
|
|
|
</LinearLayout>
|