diff options
author | Martijn Coenen <maco@google.com> | 2011-07-21 09:33:40 +0200 |
---|---|---|
committer | Martijn Coenen <maco@google.com> | 2011-07-21 11:39:41 +0200 |
commit | ba534408011905e657a143eeae9a4c0fa412e0ec (patch) | |
tree | b1c509e0f6362fd7fbceeabac637d6bfe89389e4 /res/layout | |
parent | c29c6d3f8cec4e326cb1ca7417f383253eb717c9 (diff) | |
download | packages_apps_settings-ba534408011905e657a143eeae9a4c0fa412e0ec.zip packages_apps_settings-ba534408011905e657a143eeae9a4c0fa412e0ec.tar.gz packages_apps_settings-ba534408011905e657a143eeae9a4c0fa412e0ec.tar.bz2 |
Added setting for zero-click sharing over NFC.
Change-Id: I3848c4815d65d3a8b9b5e579c6a353dde6901ee4
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/zeroclick.xml | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/res/layout/zeroclick.xml b/res/layout/zeroclick.xml new file mode 100644 index 0000000..99558f3 --- /dev/null +++ b/res/layout/zeroclick.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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" + android:paddingLeft="6dip" + android:paddingRight="6dip" + android:layout_width="match_parent" android:layout_height="wrap_content" + android:scrollbars="vertical" > + + <ScrollView + android:layout_width="match_parent" + android:layout_height="match_parent" + android:fillViewport="true"> + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical"> + + <View + android:paddingTop="53dip" + android:layout_width="match_parent" + android:layout_height="1dip" + android:background="#ff404040" + /> + + <CheckBox android:id="@+id/zeroclick_checkbox" + android:layout_width="match_parent" + android:layout_height="64dip" + android:gravity="center_vertical" + android:text="@string/zeroclick_label" + android:textAppearance="?android:attr/textAppearanceMedium" + android:textColor="?android:attr/textColorSecondary" + /> + + <View + android:layout_width="match_parent" + android:layout_height="1dip" + android:background="#ff404040" + /> + + <TextView android:id="@+id/zeroclick_explained" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="20dip" + android:gravity="top" + android:text="@string/zeroclick_explained" + /> + + + </LinearLayout> + + </ScrollView> + +</LinearLayout> + |