1 /* 2 * Copyright (C) 2013 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 */ 16 17 package com.android.systemui; 18 19 import android.os.Bundle; 20 21 public interface DemoMode { 22 23 public static final String DEMO_MODE_ALLOWED = "sysui_demo_allowed"; 24 dispatchDemoCommand(String command, Bundle args)25 void dispatchDemoCommand(String command, Bundle args); 26 27 public static final String ACTION_DEMO = "com.android.systemui.demo"; 28 29 public static final String EXTRA_COMMAND = "command"; 30 31 public static final String COMMAND_ENTER = "enter"; 32 public static final String COMMAND_EXIT = "exit"; 33 public static final String COMMAND_CLOCK = "clock"; 34 public static final String COMMAND_BATTERY = "battery"; 35 public static final String COMMAND_NETWORK = "network"; 36 public static final String COMMAND_BARS = "bars"; 37 public static final String COMMAND_STATUS = "status"; 38 public static final String COMMAND_NOTIFICATIONS = "notifications"; 39 public static final String COMMAND_VOLUME = "volume"; 40 public static final String COMMAND_OPERATOR = "operator"; 41 } 42