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 
21 import com.android.internal.logging.nano.MetricsProto;
22 import com.android.settings.SettingsActivity;
23 import com.android.settings.Utils;
24 
25 public class ShortcutPreference extends Preference {
26 
27     private final Class mTarget;
28     private final String mPrefKey;
29     private final int mTitle;
30 
ShortcutPreference(Context context, Class target, String prefKey, int prefTitle, int title)31     public ShortcutPreference(Context context, Class target, String prefKey, int prefTitle,
32             int title) {
33         super(context);
34         mTarget = target;
35         mPrefKey = prefKey;
36         mTitle = title;
37         setTitle(prefTitle);
38         setKey(mPrefKey);
39     }
40 
41     @Override
performClick()42     public void performClick() {
43         super.performClick();
44         Bundle bundle = new Bundle();
45         bundle.putString(SettingsActivity.EXTRA_FRAGMENT_ARG_KEY, mPrefKey);
46         Utils.startWithFragment(getContext(), mTarget.getName(), bundle, null, 0,
47                 mTitle, null, MetricsProto.MetricsEvent.VIEW_UNKNOWN);
48     }
49 }
50