blob: 4ec4f4ff9c9edbec2dab14c7efccf0b00dd173ef [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.
Fan Zhangb12e1972016-09-29 14:43:43 -070021 public static final String CATEGORY_HOMEPAGE = "com.android.settings.category.ia.homepage";
Fan Zhang22a56d72016-09-27 17:52:00 -070022
Fan Zhangb12e1972016-09-29 14:43:43 -070023 // Top level category.
24 public static final String CATEGORY_NETWORK = "com.android.settings.category.ia.wireless";
25 public static final String CATEGORY_DEVICE = "com.android.settings.category.ia.device";
26 public static final String CATEGORY_APPS = "com.android.settings.category.ia.apps";
27 public static final String CATEGORY_BATTERY = "com.android.settings.category.ia.battery";
28 public static final String CATEGORY_DISPLAY = "com.android.settings.category.ia.display";
29 public static final String CATEGORY_SOUND = "com.android.settings.category.ia.sound";
30 public static final String CATEGORY_STORAGE = "com.android.settings.category.ia.storage";
31 public static final String CATEGORY_SECURITY = "com.android.settings.category.ia.security";
32 public static final String CATEGORY_ACCOUNT = "com.android.settings.category.ia.accounts";
33 public static final String CATEGORY_SYSTEM = "com.android.settings.category.ia.system";
Fan Zhang22a56d72016-09-27 17:52:00 -070034}