summaryrefslogtreecommitdiffstats
path: root/src/com/android/settings
diff options
context:
space:
mode:
authorLuK1337 <priv.luk@gmail.com>2015-11-24 18:07:46 +0100
committerLuK1337 <priv.luk@gmail.com>2015-11-24 18:14:09 +0100
commite396f83869f6982e52c17c83c57864a09398fb80 (patch)
tree0d499beaad4f1810a04f95eacd88f569adcb4caa /src/com/android/settings
parent7e1c23414e3c839ce30e0f855a98d8f0d94f39c5 (diff)
downloadpackages_apps_Settings-e396f83869f6982e52c17c83c57864a09398fb80.zip
packages_apps_Settings-e396f83869f6982e52c17c83c57864a09398fb80.tar.gz
packages_apps_Settings-e396f83869f6982e52c17c83c57864a09398fb80.tar.bz2
Revert "Settings : Nav ring"
* M no longer has nav ring This reverts commit 9cf9098e3f3a6d71ec600b862005452068db86b8. Change-Id: I1484c3b2b9d3656a9f928977ee2eeaec37170bbc
Diffstat (limited to 'src/com/android/settings')
-rw-r--r--src/com/android/settings/cyanogenmod/NavRing.java79
1 files changed, 0 insertions, 79 deletions
diff --git a/src/com/android/settings/cyanogenmod/NavRing.java b/src/com/android/settings/cyanogenmod/NavRing.java
deleted file mode 100644
index 2541277..0000000
--- a/src/com/android/settings/cyanogenmod/NavRing.java
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Copyright (C) 2015 The CyanogenMod 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.
- */
-
-package com.android.settings.cyanogenmod;
-
-import android.app.Activity;
-import android.app.AlertDialog;
-import android.app.Fragment;
-import android.content.DialogInterface;
-import android.content.Intent;
-import android.os.Bundle;
-import android.provider.Settings;
-import android.view.LayoutInflater;
-import android.view.View;
-import android.view.ViewGroup;
-import android.widget.LinearLayout;
-import android.widget.TextView;
-
-import com.android.settings.R;
-import cyanogenmod.providers.CMSettings;
-
-public class NavRing extends Fragment implements View.OnClickListener {
- private LinearLayout mRestore, mSave, mEdit;
- private final static Intent TRIGGER_INTENT =
- new Intent("android.intent.action.NAVBAR_RING_EDIT");
-
- @Override
- public View onCreateView(LayoutInflater inflater, ViewGroup container,
- Bundle savedInstanceState) {
- return inflater.inflate(R.layout.nav_bar, container, false);
- }
-
- @Override
- public void onViewCreated(View view, Bundle savedInstanceState) {
- TextView message = (TextView) view.findViewById(R.id.message);
- message.setText(R.string.navigation_ring_message);
- mEdit = (LinearLayout) view.findViewById(R.id.navbar_edit);
- mEdit.setOnClickListener(this);
- mSave = (LinearLayout) view.findViewById(R.id.navbar_save);
- mSave.setOnClickListener(this);
- mRestore = (LinearLayout) view.findViewById(R.id.navbar_restore);
- mRestore.setOnClickListener(this);
- }
-
- @Override
- public void onClick(View v) {
- if (v == mEdit) {
- getActivity().sendBroadcast(TRIGGER_INTENT);
- } else if (v == mRestore) {
- new AlertDialog.Builder(getActivity())
- .setTitle(R.string.profile_reset_title)
- .setIcon(R.drawable.ic_navbar_restore)
- .setMessage(R.string.navigation_bar_reset_message)
- .setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
- public void onClick(DialogInterface dialog, int id) {
- for (int i = 0; i < 3; i++) {
- CMSettings.Secure.putString(getActivity().getContentResolver(),
- CMSettings.Secure.NAVIGATION_RING_TARGETS[i], null);
- }
- }
- })
- .setNegativeButton(R.string.cancel, null)
- .show();
- }
- }
-}