blob: 9821fb8b18fa0fd739982422fe2b6a516d2cf7eb [file] [log] [blame]
Fan Zhang22a56d72016-09-27 17:52:00 -07001/**
2 * Copyright (C) 2016 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 */
16package com.android.settingslib.drawer;
17
18public final class CategoryKey {
19
20 // Activities in this category shows up in Settings homepage.
21 public static final String CATEGORY_HOMEPAGE = "com.android.settings.category.homepage";
22
23 // Top level categor.
24 public static final String CATEGORY_NETWORK = "com.android.settings.category.wireless";
25 public static final String CATEGORY_DEVICE = "com.android.settings.category.device";
26 public static final String CATEGORY_APPS = "com.android.settings.category.apps";
27 public static final String CATEGORY_BATTERY = "com.android.settings.category.battery";
28 public static final String CATEGORY_DISPLAY = "com.android.settings.category.display";
29 public static final String CATEGORY_SOUND = "com.android.settings.category.sound";
30 public static final String CATEGORY_STORAGE = "com.android.settings.category.storage";
31 public static final String CATEGORY_SECURITY = "com.android.settings.category.security";
32 public static final String CATEGORY_ACCOUNT = "com.android.settings.category.accounts";
33 public static final String CATEGORY_SYSTEM = "com.android.settings.category.system";
34}