• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2016 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
5  * except in compliance with the License. You may obtain a copy of the License at
6  *
7  *      http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software distributed under the
10  * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
11  * KIND, either express or implied. See the License for the specific language governing
12  * permissions and limitations under the License.
13  */
14 
15 package com.android.settings.applications;
16 
17 import android.content.Context;
18 import android.os.Bundle;
19 import android.support.v7.preference.Preference;
20 import com.android.settings.SettingsActivity;
21 import com.android.settings.Utils;
22 
23 public class ShortcutPreference extends Preference {
24 
25     private final Class mTarget;
26     private final String mPrefKey;
27     private final int mTitle;
28 
ShortcutPreference(Context context, Class target, String prefKey, int prefTitle, int title)29     public ShortcutPreference(Context context, Class target, String prefKey, int prefTitle,
30             int title) {
31         super(context);
32         mTarget = target;
33         mPrefKey = prefKey;
34         mTitle = title;
35         setTitle(prefTitle);
36         setKey(mPrefKey);
37     }
38 
39     @Override
performClick()40     public void performClick() {
41         super.performClick();
42         Bundle bundle = new Bundle();
43         bundle.putString(SettingsActivity.EXTRA_FRAGMENT_ARG_KEY, mPrefKey);
44         Utils.startWithFragment(getContext(), mTarget.getName(), bundle, null, 0,
45                 mTitle, null);
46     }
47 }
48