blob: 5c2b6417102c7c0a078f2aa6bb4abc84ee9b7303 [file] [log] [blame]
Fan Zhangefb8d622017-02-23 17:50:27 -08001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Fan Zhang69e95c62017-02-23 16:05:30 -080016package com.android.settings.deviceinfo;
17
18import android.content.Context;
Fan Zhang69e95c62017-02-23 16:05:30 -080019
Fan Zhang23f8d592018-08-28 15:11:40 -070020import androidx.preference.Preference;
21
Tony Mantler1d583e12017-06-13 13:09:25 -070022import com.android.settings.core.PreferenceControllerMixin;
Fan Zhang69e95c62017-02-23 16:05:30 -080023import com.android.settingslib.DeviceInfoUtils;
Tony Mantler1d583e12017-06-13 13:09:25 -070024import com.android.settingslib.core.AbstractPreferenceController;
Fan Zhang69e95c62017-02-23 16:05:30 -080025
Tony Mantler1d583e12017-06-13 13:09:25 -070026public class KernelVersionPreferenceController extends AbstractPreferenceController implements
27 PreferenceControllerMixin {
Fan Zhang69e95c62017-02-23 16:05:30 -080028
29 private static final String KEY_KERNEL_VERSION = "kernel_version";
30
31 public KernelVersionPreferenceController(Context context) {
32 super(context);
33 }
34
35 @Override
36 public boolean isAvailable() {
37 return true;
38 }
39
40 @Override
41 public void updateState(Preference preference) {
42 super.updateState(preference);
jeffreyhuang0cdd6202017-11-10 14:20:16 -080043 preference.setSummary(DeviceInfoUtils.getFormattedKernelVersion(mContext));
Fan Zhang69e95c62017-02-23 16:05:30 -080044 }
45
46 @Override
47 public String getPreferenceKey() {
48 return KEY_KERNEL_VERSION;
49 }
50}