A TARE button is needed in the developer options in settings to allow users and developers to change the default settings it will come with. When clicked, it opens an activity of the TARE homepage with a toggle and the two policies (Alarm Manager and Job Scheduler) to choose between. It also contains a revert to default settings button. Bug: 191876567 Test: Manual (open Settings > System > Developer Options > TARE and verify tabs and menus are there) Change-Id: Id14bc9c1dcbaaf2aeb74ba7efb0168ab424f5d0c
64 lines
2.3 KiB
XML
64 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ Copyright (C) 2021 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"
|
|
android:orientation="vertical"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".development.tare.TareHomePage">
|
|
<Switch
|
|
android:id="@+id/on_switch"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="20dp"
|
|
android:text="On"
|
|
android:background="?android:attr/colorBackground"/>
|
|
<TextView
|
|
android:id="@+id/alarm_manager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="20dp"
|
|
android:clickable="true"
|
|
android:text="@string/tare_alarm_manager"
|
|
android:textColor="?android:attr/textColorSecondary"/>
|
|
|
|
<TextView
|
|
android:id="@+id/job_scheduler"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="20dp"
|
|
android:clickable="true"
|
|
android:text="@string/tare_job_scheduler"
|
|
android:textColor="?android:attr/textColorSecondary"/>
|
|
|
|
<View
|
|
android:id="@+id/divider"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="?android:attr/listDivider" />
|
|
<Button
|
|
android:id="@+id/revert_button"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="20dp"
|
|
android:onClick="revertSettings"
|
|
android:text="@string/tare_revert"/>
|
|
</LinearLayout>
|