diff options
author | Martijn Coenen <maco@google.com> | 2011-09-14 11:47:59 +0200 |
---|---|---|
committer | Martijn Coenen <maco@google.com> | 2011-09-15 22:31:51 +0200 |
commit | 943af0bc69048d827c3dd1b92daeaa2cf1b77145 (patch) | |
tree | 35ac298df2cac46a2833fd4c6489c88966c5c65f /res/layout | |
parent | 85eeb1c16a43eda16b8948e3ba966871ae6b73fa (diff) | |
download | packages_apps_Settings-943af0bc69048d827c3dd1b92daeaa2cf1b77145.tar.gz packages_apps_Settings-943af0bc69048d827c3dd1b92daeaa2cf1b77145.tar.bz2 packages_apps_Settings-943af0bc69048d827c3dd1b92daeaa2cf1b77145.zip |
Remove NFC sharing from Settings.
Bug: 5297151
Change-Id: I64304230296912519aa057a89f139a2242b557e3
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/ndefpush.xml | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/res/layout/ndefpush.xml b/res/layout/ndefpush.xml deleted file mode 100644 index 68928503c..000000000 --- a/res/layout/ndefpush.xml +++ /dev/null @@ -1,56 +0,0 @@ -<?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"> - - <TextView android:id="@+id/ndef_push_explained" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_marginTop="20dip" - android:gravity="top" - android:text="@string/ndef_push_explained" - /> - <ImageView android:id="@+id/ndef_push_image" - android:layout_width="match_parent" - android:layout_height="wrap_content" - /> - <TextView android:id="@+id/ndef_push_safety" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_marginTop="20dip" - android:gravity="top" - android:text="@string/ndef_push_top" - /> - </LinearLayout> - - </ScrollView> - -</LinearLayout> - |