summaryrefslogtreecommitdiffstats
path: root/res/layout/switch_bar.xml
diff options
context:
space:
mode:
authorFabrice Di Meglio <fdimeglio@google.com>2014-05-13 19:51:59 -0700
committerFabrice Di Meglio <fdimeglio@google.com>2014-05-14 16:42:06 -0700
commit41937766981423c9252e12e3319b2e7532739627 (patch)
tree633fd25dc02bfb1ef9b16a1914a44796ea8a82f1 /res/layout/switch_bar.xml
parenta1ebae6f718ee5fddcb33b8464c78c581ae05d69 (diff)
downloadpackages_apps_Settings-41937766981423c9252e12e3319b2e7532739627.zip
packages_apps_Settings-41937766981423c9252e12e3319b2e7532739627.tar.gz
packages_apps_Settings-41937766981423c9252e12e3319b2e7532739627.tar.bz2
Introduce SwitchBar widget
- SwitchBar is a LinearLayout that containts a TextView and a Switch and is intended to replace all Switches that are put in the ActionBar as a custom view - use the new SwitchBar for WifiSetting only for now (a later CL will take care of all the other Setting that are using a Switch in the ActionBar) Related to bug #14898161 On/Off switches must move down from Action Bar Change-Id: I5e98dbe995bba8f440d08459e09ca3ac09d3464b
Diffstat (limited to 'res/layout/switch_bar.xml')
-rw-r--r--res/layout/switch_bar.xml37
1 files changed, 37 insertions, 0 deletions
diff --git a/res/layout/switch_bar.xml b/res/layout/switch_bar.xml
new file mode 100644
index 0000000..f9a887f
--- /dev/null
+++ b/res/layout/switch_bar.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/*
+** Copyright 2014, 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.
+*/
+-->
+
+<merge xmlns:android="http://schemas.android.com/apk/res/android" >
+
+ <TextView android:id="@+id/switch_text"
+ android:layout_height="wrap_content"
+ android:layout_width="0dp"
+ android:layout_weight="1"
+ android:paddingStart="32dp"
+ android:layout_gravity="center_vertical"
+ android:textAppearance="@style/TextAppearance.Switch"
+ android:textAlignment="viewStart" />
+
+ <Switch android:id="@+id/switch_widget"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical"
+ android:paddingEnd="32dp" />
+</merge>
+