通过adb 执行 ‘ input keyevent  键值号’ 指令可以实现自动化

Keyevent类 值中文对照表

    / **密钥代码常量:未知密钥代码。 * /public static final int KEYCODE_UNKNOWN = 0;/ **键码常量:软左键。*通常位于手机显示屏下方,用作多功能*功能键,用于选择左下方显示的软件定义功能*显示屏。 * /public static final int KEYCODE_SOFT_LEFT = 1;/ **键码常量:软右键。*通常位于手机显示屏下方,用作多功能*功能键,用于选择右下方显示的软件定义功能*显示屏。 * /public static final int KEYCODE_SOFT_RIGHT = 2;/ **密钥代码常量:Home键。*此密钥由框架处理,永远不会传递给应用程序。 * /public static final int KEYCODE_HOME = 3;/ **密钥代码常量:返回密钥。 * /public static final int KEYCODE_BACK = 4;/ **密钥代码常量:呼叫密钥。 * /public static final int KEYCODE_CALL = 5;/ **密钥代码常量:结束呼叫密钥。 * /public static final int KEYCODE_ENDCALL = 6;/ **键码常量:'0'键。 * /public static final int KEYCODE_0 = 7;/ **密钥代码常量:'1'密钥。 * /public static final int KEYCODE_1 = 8;/ **密钥代码常量:'2'密钥。 * /public static final int KEYCODE_2 = 9;/ **密钥代码常量:'3'密钥。 * /public static final int KEYCODE_3 = 10;/ **密钥代码常量:'4'密钥。 * /public static final int KEYCODE_4 = 11;/ **密钥代码常量:'5'密钥。 * /public static final int KEYCODE_5 = 12;/ **密钥代码常量:'6'密钥。 * /public static final int KEYCODE_6 = 13;/ **键码常量:'7'键。 * /public static final int KEYCODE_7 = 14;/ **键码常量:'8'键。 * /public static final int KEYCODE_8 = 15;/ **键码常量:'9'键。 * /public static final int KEYCODE_9 = 16;/ **密钥代码常量:'*'键。 * /public static final int KEYCODE_STAR = 17;/ **密钥代码常量:'#'键。 * /public static final int KEYCODE_POUND = 18;/ **键码常量:Directional Pad Up键。*也可以通过轨迹球运动合成。 * /public static final int KEYCODE_DPAD_UP = 19;/ **键码常量:Directional Pad Down键。*也可以通过轨迹球运动合成。 * /public static final int KEYCODE_DPAD_DOWN = 20;/ **键码常量:Directional Pad左键。*也可以通过轨迹球运动合成。 * /public static final int KEYCODE_DPAD_LEFT = 21;/ **键码常量:Directional Pad右键。*也可以通过轨迹球运动合成。 * /public static final int KEYCODE_DPAD_RIGHT = 22;/ **键码常量:Directional Pad Center键。*也可以通过轨迹球运动合成。 * /public static final int KEYCODE_DPAD_CENTER = 23;/ **键码常量:音量增大键。*调高扬声器音量。 * /public static final int KEYCODE_VOLUME_UP = 24;/ **键码常量:降低音量键。*调低扬声器音量。 * /public static final int KEYCODE_VOLUME_DOWN = 25;/ **密钥代码常量:电源键。 * /public static final int KEYCODE_POWER = 26;/ **键码常量:相机键。*用于启动相机应用程序或拍照。 * /public static final int KEYCODE_CAMERA = 27;/ **密钥代码常量:清除密钥。 * /public static final int KEYCODE_CLEAR = 28;/ **密钥代码常量:'A'密钥。 * /public static final int KEYCODE_A = 29;/ **密钥代码常量:'B'密钥。 * /public static final int KEYCODE_B = 30;/ **密钥代码常量:'C'密钥。 * /public static final int KEYCODE_C = 31;/ **密钥代码常量:'D'键。 * /public static final int KEYCODE_D = 32;/ **密钥代码常量:'E'键。 * /public static final int KEYCODE_E = 33;/ **键码常量:'F'键。 * /public static final int KEYCODE_F = 34;/ **键码常量:'G'键。 * /public static final int KEYCODE_G = 35;/ **密钥代码常量:'H'键。 * /public static final int KEYCODE_H = 36;/ **密钥代码常量:'我'密钥。 * /public static final int KEYCODE_I = 37;/ **键码常量:'J'键。 * /public static final int KEYCODE_J = 38;/ **密钥代码常量:'K'密钥。 * /public static final int KEYCODE_K = 39;/ **键码常量:'L'键。 * /public static final int KEYCODE_L = 40;/ **密钥代码常量:'M'键。 * /public static final int KEYCODE_M = 41;/ **密钥代码常量:'N'键。 * /public static final int KEYCODE_N = 42;/ **密钥代码常量:'O'键。 * /public static final int KEYCODE_O = 43;/ **键码常量:'P'键。 * /public static final int KEYCODE_P = 44;/ **密钥代码常量:'Q'键。 * /public static final int KEYCODE_Q = 45;/ **键码常量:'R'键。 * /public static final int KEYCODE_R = 46;/ **密钥代码常量:'S'密钥。 * /public static final int KEYCODE_S = 47;/ **密钥代码常量:'T'键。 * /public static final int KEYCODE_T = 48;/ **密钥代码常量:'U'键。 * /public static final int KEYCODE_U = 49;/ **键码常量:'V'键。 * /public static final int KEYCODE_V = 50;/ **密钥代码常量:'W'键。 * /public static final int KEYCODE_W = 51;/ **键码常量:'X'键。 * /public static final int KEYCODE_X = 52;/ **键码常量:'Y'键。 * /public static final int KEYCODE_Y = 53;/ **键码常量:'Z'键。 * /public static final int KEYCODE_Z = 54;/ **键码常量:','键。 * /public static final int KEYCODE_COMMA = 55;/ **密钥代码常量:'。'键。 * /public static final int KEYCODE_PERIOD = 56;/ **键码常量:左Alt键修饰键。 * /public static final int KEYCODE_ALT_LEFT = 57;/ **键码常量:右Alt键修饰键。 * /public static final int KEYCODE_ALT_RIGHT = 58;/ **键码常量:左移键控键。 * /public static final int KEYCODE_SHIFT_LEFT = 59;/ **键码常量:右移键控键。 * /public static final int KEYCODE_SHIFT_RIGHT = 60;/ **密钥代码常量:Tab键。 * /public static final int KEYCODE_TAB = 61;/ **密钥代码常量:空格键。 * /public static final int KEYCODE_SPACE = 62;/ **键码常量:符号修饰键。*用于输入备用符号。 * /public static final int KEYCODE_SYM = 63;/ **键码常量:Explorer特殊功能键。*用于启动浏览器应用程序。 * /public static final int KEYCODE_EXPLORER = 64;/ **密钥代码常量:信封特殊功能键。*用于启动邮件应用程序。 * /public static final int KEYCODE_ENVELOPE = 65;/ **密钥代码常量:输入密钥。 * /public static final int KEYCODE_ENTER = 66;/ **密钥代码常量:退格键。*与{@link #KEYCODE_FORWARD_DEL}不同,删除插入点之前的字符。 * /public static final int KEYCODE_DEL = 67;/ **键码常量:'''(反引号)键。 * /public static final int KEYCODE_GRAVE = 68;/ **密钥代码常量:' - '。 * /public static final int KEYCODE_MINUS = 69;/ **密钥代码常量:'='密钥。 * /public static final int KEYCODE_EQUALS = 70;/ **密钥代码常量:'['密钥。 * /public static final int KEYCODE_LEFT_BRACKET = 71;/ **密钥代码常量:']'密钥。 * /public static final int KEYCODE_RIGHT_BRACKET = 72;/ **密钥代码常量:'\'密钥。 * /public static final int KEYCODE_BACKSLASH = 73;/ **密钥代码常量:';'键。 * /public static final int KEYCODE_SEMICOLON = 74;/ **密钥代码常量:'''(撇号)键。 * /public static final int KEYCODE_APO​​STROPHE = 75;/ **密钥代码常量:'/'键。 * /public static final int KEYCODE_SLASH = 76;/ **键码常量:'@'键。 * /public static final int KEYCODE_AT = 77;/ **键码常量:数字修饰键。*用于输入数字符号。*此密钥不是Num Lock;它更像是{@link #KEYCODE_ALT_LEFT}而且是*由{@link android.text.method.MetaKeyKeyListener}解释为ALT键。 * /public static final int KEYCODE_NUM = 78;/ **键码常量:耳机挂钩键。*用于挂断电话和停止媒体。 * /public static final int KEYCODE_HEADSETHOOK = 79;/ **键码常量:Camera Focus键。*用于聚焦相机。 * /public static final int KEYCODE_FOCUS = 80; // *相机*焦点/ **密钥代码常量:'+'键。 * /public static final int KEYCODE_PLUS = 81;/ **键码常量:菜单键。 * /public static final int KEYCODE_MENU = 82;/ **密钥代码常量:通知密钥。 * /public static final int KEYCODE_NOTIFICATION = 83;/ **密钥代码常量:搜索密钥。 * /public static final int KEYCODE_SEARCH = 84;/ **键码常量:播放/暂停媒体键。 * /public static final int KEYCODE_MEDIA_PLAY_PAUSE = 85;/ **密钥代码常量:停止媒体密钥。 * /public static final int KEYCODE_MEDIA_STOP = 86;/ **密钥代码常量:播放下一个媒体密钥。 * /public static final int KEYCODE_MEDIA_NEXT = 87;/ **密钥代码常量:播放以前的媒体密钥。 * /public static final int KEYCODE_MEDIA_PREVIOUS = 88;/ **键码常量:倒带媒体键。 * /public static final int KEYCODE_MEDIA_REWIND = 89;/ **密钥代码常量:快进媒体密钥。 * /public static final int KEYCODE_MEDIA_FAST_FORWARD = 90;/ **键码常量:静音键。*与{@link #KEYCODE_VOLUME_MUTE}不同,使麦克风静音。 * /public static final int KEYCODE_MUTE = 91;/ **密钥代码常量:Page Up键。 * /public static final int KEYCODE_PAGE_UP = 92;/ **键码常量:Page Down键。 * /public static final int KEYCODE_PAGE_DOWN = 93;/ **键码常量:图片符号修饰键。*用于切换符号集(表情符号,Kao-moji)。 * /public static final int KEYCODE_PICTSYMBOLS = 94; //切换符号集(Emoji,Kao-moji)/ **密钥代码常量:Switch Charset修饰键。*用于切换字符集(汉字,片假名)。 * /public static final int KEYCODE_SWITCH_CHARSET = 95; //切换字符集(汉字,片假名)/ **密钥代码常量:一个Button键。*在游戏控制器上,A按钮应该是标有A的按钮*或控制器按钮底行的第一个按钮。 * /public static final int KEYCODE_BUTTON_A = 96;/ **键码常量:B键键。*在游戏控制器上,B按钮应该是标有B的按钮*或控制器按钮底行的第二个按钮。 * /public static final int KEYCODE_BUTTON_B = 97;/ **键码常量:C键键。*在游戏控制器上,C按钮应该是标有C的按钮*或控制器按钮底行的第三个按钮。 * /public static final int KEYCODE_BUTTON_C = 98;/ **键码常量:X键键。*在游戏控制器上,X按钮应该是标有X的按钮*或控制器按钮上排的第一个按钮。 * /public static final int KEYCODE_BUTTON_X = 99;/ **键码常量:Y键键。*在游戏控制器上,Y按钮应该是标记为Y的按钮*或控制器按钮上排的第二个按钮。 * /public static final int KEYCODE_BUTTON_Y = 100;/ **键码常量:Z键键。*在游戏控制器上,Z按钮应该是标有Z的按钮*或控制器按钮上排的第三个按钮。 * /public static final int KEYCODE_BUTTON_Z = 101;/ **键码常量:L1键键。*在游戏控制器上,L1按钮应该是标记为L1(或L)的按钮*或左上角的触发按钮。 * /public static final int KEYCODE_BUTTON_L1 = 102;/ **键码常量:R1键键。*在游戏控制器上,R1按钮应该是标有R1(或R)的按钮*或右上角的触发按钮。 * /public static final int KEYCODE_BUTTON_R1 = 103;/ **键码常量:L2键键。*在游戏控制器上,L2按钮应该是标记为L2的按钮*或左下方的触发按钮。 * /public static final int KEYCODE_BUTTON_L2 = 104;/ **密钥代码常量:R2按钮键。*在游戏控制器上,R2按钮应该是标有R2的按钮*或右下方的触发按钮。 * /public static final int KEYCODE_BUTTON_R2 = 105;/ **键码常量:左拇指按键。*在游戏控制器上,左侧拇指按钮表示左侧(或仅)*按下操纵杆。 * /public static final int KEYCODE_BUTTON_THUMBL = 106;/ **键码常量:右拇指按键。*在游戏控制器上,右侧拇指按钮表示右侧*按下操纵杆。 * /public static final int KEYCODE_BUTTON_THUMBR = 107;/ **键码常量:开始键键。*在游戏控制器上,标有“开始”的按钮。 * /public static final int KEYCODE_BUTTON_START = 108;/ **密钥代码常量:选择按钮键。*在游戏控制器上,标有选择的按钮。 * /public static final int KEYCODE_BUTTON_SELECT = 109;/ **键码常量:模式键按键。*在游戏控制器上,标有模式的按钮。 * /public static final int KEYCODE_BUTTON_MODE = 110;/ **键码常量:退出键。 * /public static final int KEYCODE_ESCAPE = 111;/ **密钥代码常量:转发删除密钥。*与{@link #KEYCODE_DEL}不同,删除插入点之前的字符。 * /public static final int KEYCODE_FORWARD_DEL = 112;/ **键码常量:左控制修改键。 * /public static final int KEYCODE_CTRL_LEFT = 113;/ **密钥代码常量:右控制修改键。 * /public static final int KEYCODE_CTRL_RIGHT = 114;/ **密钥代码常量:大写锁定密钥。 * /public static final int KEYCODE_CAPS_LOCK = 115;/ **键码常量:Scroll Lock键。 * /public static final int KEYCODE_SCROLL_LOCK = 116;/ **键码常量:左元修饰键。 * /public static final int KEYCODE_META_LEFT = 117;/ **键码常量:右元修饰键。 * /public static final int KEYCODE_META_RIGHT = 118;/ **键码常量:功能修饰键。 * /public static final int KEYCODE_FUNCTION = 119;/ **密钥代码常量:系统请求/打印屏幕键。 * /public static final int KEYCODE_SYSRQ = 120;/ **密钥代码常量:中断/暂停键。 * /public static final int KEYCODE_BREAK = 121;/ **密钥代码常量:Home Movement键。*用于滚动或将光标移动到行的开头*或列表顶部。 * /public static final int KEYCODE_MOVE_HOME = 122;/ **键码常量:结束移动键。*用于滚动或将光标移动到一行的末尾*或列表的底部。 * /public static final int KEYCODE_MOVE_END = 123;/ **密钥代码常量:插入密钥。*切换插入/覆盖编辑模式。 * /public static final int KEYCODE_INSERT = 124;/ **密钥代码常量:转发密钥。*在历史堆栈中向前导航。 {@link #KEYCODE_BACK}的补充。 * /public static final int KEYCODE_FORWARD = 125;/ **键码常量:播放媒体键。 * /public static final int KEYCODE_MEDIA_PLAY = 126;/ **密钥代码常量:暂停媒体密钥。 * /public static final int KEYCODE_MEDIA_PAUSE = 127;/ **密钥代码常量:关闭媒体密钥。*例如,可用于关闭CD托盘。 * /public static final int KEYCODE_MEDIA_CLOSE = 128;/ **密钥代码常量:弹出媒体密钥。*例如,可用于弹出CD托盘。 * /public static final int KEYCODE_MEDIA_EJECT = 129;/ **密钥代码常量:记录媒体密钥。 * /public static final int KEYCODE_MEDIA_RECORD = 130;/ **键码常量:F1键。 * /public static final int KEYCODE_F1 = 131;/ **密钥代码常量:F2键。 * /public static final int KEYCODE_F2 = 132;/ **键码常量:F3键。 * /public static final int KEYCODE_F3 = 133;/ **密钥代码常量:F4键。 * /public static final int KEYCODE_F4 = 134;/ **密钥代码常量:F5密钥。 * /public static final int KEYCODE_F5 = 135;/ **密钥代码常量:F6密钥。 * /public static final int KEYCODE_F6 = 136;/ **密钥代码常量:F7键。 * /public static final int KEYCODE_F7 = 137;/ **键码常量:F8键。 * /public static final int KEYCODE_F8 = 138;/ **键码常量:F9键。 * /public static final int KEYCODE_F9 = 139;/ **密钥代码常量:F10密钥。 * /public static final int KEYCODE_F10 = 140;/ **键码常量:F11键。 * /public static final int KEYCODE_F11 = 141;/ **键码常量:F12键。 * /public static final int KEYCODE_F12 = 142;/ **密钥代码常量:Num Lock密钥。*这是Num Lock键;它与{@link #KEYCODE_NUM}不同。*此键改变数字键盘上其他键的行为。 * /public static final int KEYCODE_NUM_LOCK = 143;/ **键码常量:数字键盘'0'键。 * /public static final int KEYCODE_NUMPAD_0 = 144;/ **键码常量:数字键盘'1'键。 * /public static final int KEYCODE_NUMPAD_1 = 145;/ **键码常量:数字键盘'2'键。 * /public static final int KEYCODE_NUMPAD_2 = 146;/ **键码常量:数字键盘'3'键。 * /public static final int KEYCODE_NUMPAD_3 = 147;/ **键码常量:数字键盘'4'键。 * /public static final int KEYCODE_NUMPAD_4 = 148;/ **键码常量:数字键盘'5'键。 * /public static final int KEYCODE_NUMPAD_5 = 149;/ **键码常量:数字键盘'6'键。 * /public static final int KEYCODE_NUMPAD_6 = 150;/ **键码常量:数字键盘'7'键。 * /public static final int KEYCODE_NUMPAD_7 = 151;/ **键码常量:数字键盘'8'键。 * /public static final int KEYCODE_NUMPAD_8 = 152;/ **键码常量:数字键盘'9'键。 * /public static final int KEYCODE_NUMPAD_9 = 153;/ **键码常量:数字键盘'/'键(用于除法)。 * /public static final int KEYCODE_NUMPAD_DIVIDE = 154;/ **键码常量:数字键盘'*'键(用于乘法)。 * /public static final int KEYCODE_NUMPAD_MULTIPLY = 155;/ **键码常量:数字键盘' - '键(用于减法)。 * /public static final int KEYCODE_NUMPAD_SUBTRACT = 156;/ **键码常量:数字键盘'+'键(用于添加)。 * /public static final int KEYCODE_NUMPAD_ADD = 157;/ **密钥代码常量:数字小键盘'。'键(用于小数或数字分组)。 * /public static final int KEYCODE_NUMPAD_DOT = 158;/ **键码常量:数字键盘','键(用于小数或数字分组)。 * /public static final int KEYCODE_NUMPAD_COMMA = 159;/ **键码常量:数字键盘输入键。 * /public static final int KEYCODE_NUMPAD_ENTER = 160;/ **键码常量:数字键盘'='键。 * /public static final int KEYCODE_NUMPAD_EQUALS = 161;/ **键码常量:数字键盘'('键。* /public static final int KEYCODE_NUMPAD_LEFT_PAREN = 162;/ **键码常量:数字键盘')'键。 * /public static final int KEYCODE_NUMPAD_RIGHT_PAREN = 163;/ **键码常量:音量静音键。*与{@link #KEYCODE_MUTE}不同,使发言者静音。*此键通常应实现为切换,以便第一次按下*使扬声器静音,第二次按下可恢复原始音量。 * /public static final int KEYCODE_VOLUME_MUTE = 164;/ **密钥代码常量:信息密钥。*常见的电视遥控器,以显示与什么相关的其他信息*目前正在浏览中。 * /public static final int KEYCODE_INFO = 165;/ **密钥代码常量:频道向上键。*在电视遥控器上,增加电视频道。 * /public static final int KEYCODE_CHANNEL_UP = 166;/ **键码常量:通道向下键。*在电视遥控器上,减少电视频道。 * /public static final int KEYCODE_CHANNEL_DOWN = 167;/ **键码常量:放大键。 * /public static final int KEYCODE_ZOOM_IN = 168;/ **键码常量:缩小键。 * /public static final int KEYCODE_ZOOM_OUT = 169;/ **键码常数:电视键。*在电视遥控器上,切换到观看直播电视。 * /public static final int KEYCODE_TV = 170;/ **密钥代码常量:窗口密钥。*在电视遥控器上,切换画中画模式或其他窗口功能。*在Android Wear设备上,触发显示偏移。 * /public static final int KEYCODE_WINDOW = 171;/ **密钥代码常量:引导键。*在电视遥控器上,显示编程指南。 * /public static final int KEYCODE_GUIDE = 172;/ **密钥代码常量:DVR密钥。*在某些电视遥控器上,切换到录制节目的DVR模式。 * /public static final int KEYCODE_DVR = 173;/ **密钥代码常量:书签密钥。*在某些电视遥控器,书签内容或网页上。 * /public static final int KEYCODE_BOOKMARK = 174;/ **键码常量:切换字幕键。*切换隐藏式字幕文本的模式,例如在电视节目期间。 * /public static final int KEYCODE_CAPTIONS = 175;/ **密钥代码常量:设置密钥。*开始系统设置活动。 * /public static final int KEYCODE_SETTINGS = 176;/ **键码常数:电视电源键。*在电视遥控器上,切换电视屏幕上的电源。 * /public static final int KEYCODE_TV_POWER = 177;/ **键码常数:电视输入键。*在电视遥控器上,切换电视屏幕上的输入。 * /public static final int KEYCODE_TV_INPUT = 178;/ **密钥代码常量:机顶盒电源键。*在电视遥控器上,切换外部机顶盒的电源。 * /public static final int KEYCODE_STB_POWER = 179;/ **密钥代码常量:机顶盒输入密钥。*在电视遥控器上,在外部机顶盒上切换输入模式。 * /public static final int KEYCODE_STB_INPUT = 180;/ **键码常数:A / V接收器电源键。*在电视遥控器上,切换外部A / V接收器的电源。 * /public static final int KEYCODE_AVR_POWER = 181;/ **键码常量:A / V接收器输入键。*在电视遥控器上,在外部A / V接收器上切换输入模式。 * /public static final int KEYCODE_AVR_INPUT = 182;/ **键码常量:红色“可编程”键。*在电视遥控器上,充当上下文/可编程键。 * /public static final int KEYCODE_PROG_RED = 183;/ **键码常量:绿色“可编程”键。*在电视遥控器上,actas是一个上下文/可编程键。 * /public static final int KEYCODE_PROG_GREEN = 184;/ **键码常量:黄色“可编程”键。*在电视遥控器上,充当上下文/可编程键。 * /public static final int KEYCODE_PROG_YELLOW = 185;/ **键码常量:蓝色“可编程”键。*在电视遥控器上,充当上下文/可编程键。 * /public static final int KEYCODE_PROG_BLUE = 186;/ **键码常量:App开关键。*应调出应用程序切换器对话框。 * /public static final int KEYCODE_APP_SWITCH = 187;/ **密钥代码常量:通用游戏手柄按钮#1。* /public static final int KEYCODE_BUTTON_1 = 188;/ **密钥代码常量:通用游戏手柄按钮#2。* /public static final int KEYCODE_BUTTON_2 = 189;/ **密钥代码常量:通用游戏手柄按钮#3。* /public static final int KEYCODE_BUTTON_3 = 190;/ **密钥代码常量:通用游戏手柄按钮#4。* /public static final int KEYCODE_BUTTON_4 = 191;/ **密钥代码常量:通用游戏手柄按钮#5。* /public static final int KEYCODE_BUTTON_5 = 192;/ **密钥代码常量:通用游戏手柄按钮#6。* /public static final int KEYCODE_BUTTON_6 = 193;/ **密钥代码常量:通用游戏手柄按钮#7。* /public static final int KEYCODE_BUTTON_7 = 194;/ **密钥代码常量:通用游戏手柄按钮#8。* /public static final int KEYCODE_BUTTON_8 = 195;/ **密钥代码常量:通用游戏手柄按钮#9。* /public static final int KEYCODE_BUTTON_9 = 196;/ **密钥代码常量:通用游戏手柄按钮#10。* /public static final int KEYCODE_BUTTON_10 = 197;/ **密钥代码常量:通用游戏手柄按钮#11。* /public static final int KEYCODE_BUTTON_11 = 198;/ **密钥代码常量:通用游戏手柄按钮#12。* /public static final int KEYCODE_BUTTON_12 = 199;/ **密钥代码常量:通用游戏手柄按钮#13。* /public static final int KEYCODE_BUTTON_13 = 200;/ **密钥代码常量:通用游戏手柄按钮#14。* /public static final int KEYCODE_BUTTON_14 = 201;/ **密钥代码常量:通用游戏手柄按钮#15。* /public static final int KEYCODE_BUTTON_15 = 202;/ **密钥代码常量:通用游戏手柄按钮#16。* /public static final int KEYCODE_BUTTON_16 = 203;/ **密钥代码常量:语言切换键。*切换当前输入语言,例如在英语和日语之间切换* QWERTY键盘。在某些设备上,可以执行相同的功能*按Shift +空格键。 * /public static final int KEYCODE_LANGUAGE_SWITCH = 204;/ **密钥代码常量:方式模式密钥。*打开和关闭静音或振动模式,使设备表现得更礼貌*在某些设置中,例如在拥挤的火车上。在某些设备上,密钥可能只是*长按时操作。 * /public static final int KEYCODE_MANNER_MODE = 205;/ **键码常量:3D模式键。*在2D和3D模式之间切换显示。 * /public static final int KEYCODE_3D_MODE = 206;/ **密钥代码常量:联系人特殊功能键。*用于启动地址簿应用程序。 * /public static final int KEYCODE_CONTACTS = 207;/ **键码常量:日历特殊功能键。*用于启动日历应用程序。 * /public static final int KEYCODE_CALENDAR = 208;/ **键码常量:音乐特殊功能键。*用于启动音乐播放器应用程序。 * /public static final int KEYCODE_MUSIC = 209;/ **密钥代码常量:计算器特殊功能键。*用于启动计算器应用程序。 * /public static final int KEYCODE_CALCULATOR = 210;/ **键码常量:日语全宽/半宽键。 * /public static final int KEYCODE_ZENKAKU_HANKAKU = 211;/ **密钥代码常量:日语字母数字键。 * /public static final int KEYCODE_EISU = 212;/ **密钥代码常量:日语非转换密钥。 * /public static final int KEYCODE_MUHENKAN = 213;/ **密钥代码常量:日语转换密钥。 * /public static final int KEYCODE_HENKAN = 214;/ **键码常数:日本片假名/平假名键。 * /public static final int KEYCODE_KATAKANA_HIRAGANA = 215;/ **密钥代码常量:日元密钥。 * /public static final int KEYCODE_YEN = 216;/ **密钥代码常量:日语Ro密钥。 * /public static final int KEYCODE_RO = 217;/ **密钥代码常量:日文假名密钥。 * /public static final int KEYCODE_KANA = 218;/ **键码常量:辅助键。*启动全球协助活动。未交付给应用程序。 * /public static final int KEYCODE_ASSIST = 219;/ **键码常量:亮度向下键。*调低屏幕亮度。 * /public static final int KEYCODE_BRIGHTNESS_DOWN = 220;/ **键码常量:亮度向上键。*调高屏幕亮度。 * /public static final int KEYCODE_BRIGHTNESS_UP = 221;/ **键码常量:音轨键。*切换音轨。 * /public static final int KEYCODE_MEDIA_AUDIO_TRACK = 222;/ **键码常量:睡眠键。*让设备进入睡眠状态。行为有点像{@link #KEYCODE_POWER},但它*如果设备已经睡着,则无效。 * /public static final int KEYCODE_SLEEP = 223;/ **密钥代码常量:唤醒密钥。*唤醒设备。行为有点像{@link #KEYCODE_POWER},但它*如果设备已经清醒,则无效。 * /public static final int KEYCODE_WAKEUP = 224;/ **密钥代码常量:配对密钥。*启动外围配对模式。用于配对遥控器*设备或游戏控制器,特别是如果没有其他输入模式*可用。 * /public static final int KEYCODE_PAIRING = 225;/ **键码常量:Media Top Menu键。*转到媒体菜单的顶部。 * /public static final int KEYCODE_MEDIA_TOP_MENU = 226;/ **密钥代码常量:'11'密钥。 * /public static final int KEYCODE_11 = 227;/ **密钥代码常量:'12'密钥。 * /public static final int KEYCODE_12 = 228;/ **密钥代码常量:Last Channel密钥。*转到上次查看的频道。 * /public static final int KEYCODE_LAST_CHANNEL = 229;/ **密钥代码常量:电视数据服务密钥。*显示天气,体育等数据服务。 * /public static final int KEYCODE_TV_DATA_SERVICE = 230;/ **键码常量:语音辅助键。*启动全球语音辅助活动。未交付给应用程序。 * /public static final int KEYCODE_VOICE_ASSIST = 231;/ **密钥代码常量:无线电密钥。*切换电视服务/广播服务。 * /public static final int KEYCODE_TV_RADIO_SERVICE = 232;/ **密钥代码常量:图文电视密钥。*显示图文电视服务。 * /public static final int KEYCODE_TV_TELETEXT = 233;/ **密钥代码常量:数字输入密钥。*分配每个数字键时,开始输入多位数通道nubmber*用于选择单独的频道。对应于CEC的数字输入模式(0x1D)*用户控制代码。 * /public static final int KEYCODE_TV_NUMBER_ENTRY = 234;/ **密钥代码常量:模拟地面密钥。*切换到模拟地面广播服务。 * /public static final int KEYCODE_TV_TERRESTRIAL_ANALOG = 235;/ **密钥代码常量:数字地面密钥。*切换到数字地面广播服务。 * /public static final int KEYCODE_TV_TERRESTRIAL_DIGITAL = 236;/ **密钥代码常量:卫星密钥。*切换到数字卫星广播服务。 * /public static final int KEYCODE_TV_SATELLITE = 237;/ **密钥代码常量:BS密钥。*切换到日本提供的BS数字卫星广播服务。 * /public static final int KEYCODE_TV_SATELLITE_BS = 238;/ **密钥代码常量:CS密钥。*切换到日本提供的C​​S数字卫星广播服务。 * /public static final int KEYCODE_TV_SATELLITE_CS = 239;/ **密钥代码常量:BS / CS密钥。*在BS和CS数字卫星服务之间切换。 * /public static final int KEYCODE_TV_SATELLITE_SERVICE = 240;/ **密钥代码常量:切换网络密钥。*切换选择broacast服务。 * /public static final int KEYCODE_TV_NETWORK = 241;/ **键码常量:天线/电缆键。*在天线和电缆之间切换广播输入源。 * /public static final int KEYCODE_TV_ANTENNA_CABLE = 242;/ **密钥代码常量:HDMI#1密钥。*切换到HDMI输入#1。 * /public static final int KEYCODE_TV_INPUT_HDMI_1 = 243;/ **密钥代码常量:HDMI#2密钥。*切换到HDMI输入#2。 * /public static final int KEYCODE_TV_INPUT_HDMI_2 = 244;/ **密钥代码常量:HDMI#3密钥。*切换到HDMI输入#3。 * /public static final int KEYCODE_TV_INPUT_HDMI_3 = 245;/ **密钥代码常量:HDMI#4密钥。*切换到HDMI输入#4。 * /public static final int KEYCODE_TV_INPUT_HDMI_4 = 246;/ **密钥代码常量:复合#1密钥。*切换到复合视频输入#1。 * /public static final int KEYCODE_TV_INPUT_COMPOSITE_1 = 247;/ **密钥代码常量:复合#2密钥。*切换到复合视频输入#2。 * /public static final int KEYCODE_TV_INPUT_COMPOSITE_2 = 248;/ **密钥代码常量:组件#1密钥。*切换到分量视频输入#1。 * /public static final int KEYCODE_TV_INPUT_COMPONENT_1 = 249;/ **密钥代码常量:组件#2密钥。*切换到分量视频输入#2。 * /public static final int KEYCODE_TV_INPUT_COMPONENT_2 = 250;/ **密钥代码常量:VGA#1密钥。*切换到VGA(模拟RGB)输入#1。 * /public static final int KEYCODE_TV_INPUT_VGA_1 = 251;/ **密钥代码常量:音频描述密钥。*关闭/打开音频说明。 * /public static final int KEYCODE_TV_AUDIO_DESCRIPTION = 252;/ **键码常量:音频描述混音音量增大键。*与正常音频音量相比,Louden音频描述音量。 * /public static final int KEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP = 253;/ **键码常量:音频描述混音音量降低键。*与普通音量相比,减少音频描述音量。 * /public static final int KEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN = 254;/ **键码常量:缩放模式键。*更改缩放模式(正常,完整,缩放,广角缩放等)* /public static final int KEYCODE_TV_ZOOM_MODE = 255;/ **键码常量:内容菜单键。*进入标题列表。对应于CEC用户控制的内容菜单(0x0B)*代码* /public static final int KEYCODE_TV_CONTENTS_MENU = 256;/ **键码常量:媒体上下文菜单键。*转到媒体内容的上下文菜单。对应于媒体上下文敏感* CEC用户控制代码的菜单(0x11)。 * /public static final int KEYCODE_TV_MEDIA_CONTEXT_MENU = 257;/ **密钥代码常量:定时器编程密钥。*转到定时录制菜单。对应于定时器编程(0x54)* CEC用户控制代码。 * /public static final int KEYCODE_TV_TIMER_PROGRAMMING = 258;/ **密钥代码常量:帮助密钥。 * /public static final int KEYCODE_HELP = 259;/ **密钥代码常量:导航到上一个密钥。*在有序的项目集合中向后移动一个项目。 * /public static final int KEYCODE_NAVIGATE_PREVIOUS = 260;/ **密钥代码常量:导航到下一个密钥。*前进到有序的项目集合中的下一个项目。 * /public static final int KEYCODE_NAVIGATE_NEXT = 261;/ **密钥代码常量:按键导航。*激活当前具有焦点或扩展到下一级导航的项目*层次结构。 * /public static final int KEYCODE_NAVIGATE_IN = 262;/ **密钥代码常量:导出密钥。*退出导航层次结构的一个级别或折叠当前具有的项目*专注。 * /public static final int KEYCODE_NAVIGATE_OUT = 263;/ **键码常量:Wear的主干键*手表上的主电源/复位按钮。 * /public static final int KEYCODE_STEM_PRIMARY = 264;/ **键码常量:Wear *的通用词干键1 /public static final int KEYCODE_STEM_1 = 265;/ **键码常量:磨损的通用词干键2 /public static final int KEYCODE_STEM_2 = 266;/ **键码常量:Wear *的通用词干键* /public static final int KEYCODE_STEM_3 = 267;/ **键码常量:方向键上左* /public static final int KEYCODE_DPAD_UP_LEFT = 268;/ **键码常量:方向键左下* /public static final int KEYCODE_DPAD_DOWN_LEFT = 269;/ **键码常量:方向键向右* /public static final int KEYCODE_DPAD_UP_RIGHT = 270;/ **键码常量:方向键向下右* /public static final int KEYCODE_DPAD_DOWN_RIGHT = 271;/ **密钥代码常量:向前跳过媒体密钥。 * /public static final int KEYCODE_MEDIA_SKIP_FORWARD = 272;/ **密钥代码常量:向后跳过媒体密钥。 * /public static final int KEYCODE_MEDIA_SKIP_BACKWARD = 273;/ **密钥代码常量:前进媒体密钥。*步骤媒体前进,一次一帧。 * /public static final int KEYCODE_MEDIA_STEP_FORWARD = 274;/ **密钥代码常量:退步媒体密钥。*步骤媒体向后,一次一帧。 * /public static final int KEYCODE_MEDIA_STEP_BACKWARD = 275;/ **键码常量:除非持有唤醒锁,否则将设备置于睡眠状态。 * /public static final int KEYCODE_SOFT_SLEEP = 276;/ **键码常量:剪切键。 * /public static final int KEYCODE_CUT = 277;/ **密钥代码常量:复制密钥。 * /public static final int KEYCODE_COPY = 278;/ **密钥代码常量:粘贴密钥。 * /public static final int KEYCODE_PASTE = 279;/ **密钥代码常量:系统消耗导航* /public static final int KEYCODE_SYSTEM_NAVIGATION_UP = 280;/ **密钥代码常量:系统消耗导航* /public static final int KEYCODE_SYSTEM_NAVIGATION_DOWN = 281;/ **密钥代码常量:由左侧导航系统消耗* /public static final int KEYCODE_SYSTEM_NAVIGATION_LEFT = 282;/ **密钥代码常量:由导航系统消耗* /public static final int KEYCODE_SYSTEM_NAVIGATION_RIGHT = 283;/ **密钥代码常量:显示所有应用* /public static final int KEYCODE_ALL_APPS = 284;/ **密钥代码常量:刷新密钥。*/public static final int KEYCODE_REFRESH = 285;

Android keyevent值中文表相关推荐

  1. 自动写代码机(其实是自动抄代码机,含部分KeyEvent值对应表)

    就比较神奇,老师给我们做了一个实验考试系统,大致就是有题目列表然后打开以后里面有个文本编辑器可以写代码的那种. 最最最开始我们还没觉得什么,就像往常一样在eclipse或者IntelliJ里面调试,打 ...

  2. linux+android4.2键值关系,Android4.0 添加一个新的Android 键值

    这里添加新的键值,不是毫无凭据凭空创造的一个键值,而是根据kernel中检测到的按键值,然后转化为所需要的数值: 以添加一个linux键值为217,把它映射为android的键值Browser(这个键 ...

  3. Android4.0 添加一个新的Android 键值

    这里添加新的键值,不是毫无凭据凭空创造的一个键值,而是根据kernel中检测到的按键值,然后转化为Android所需要的数值: 以添加一个Linux键值为217,把它映射为android的键值Brow ...

  4. 看得见的数据结构Android版之数组表(数据结构篇)

    零.前言: 一讲到装东西的容器,你可能习惯于使用ArrayList和数组,你有想过ArrayList和数组的区别吗? Java的类起名字都不是随便乱起的,一般前面是辅助,后面是实质:ArrayList ...

  5. android台湾中文網,android台灣中文網註冊

    Android 台灣中文網- APK.TW Android 台灣中文網. 智慧型手機免費遊戲下載軟體下載韌體下載APP下載刷機教程. 關於APK.TW. blablabla. 1. blablabla ...

  6. 看得见的数据结构Android版之数组表(视图篇)

    零.前言: 1.本文的姊妹篇:看得见的数据结构Android版之表的数组实现(数据结构篇) 2.希望你可以和我在Github一同见证:DS4Android的诞生与成长,欢迎star 3.激动人心的时刻 ...

  7. GBase 8a 企业管理器执行 SQL 查询表中 BLOB 列值中文乱 码

    问题现象 使用企业管理器执行 SQL 查询,查询表中 BLOB 列字段值,列值中文乱码. 查询步骤如下: 步骤 1 创建测试表: CREATE TABLE test(a INT,b BLOB); 步骤 ...

  8. Android Sqlite数据库多表联合查询

    Android Sqlite数据库多表联合查询示例 工作上用数据库存储文件还是很便利的,所以有时候发现一张表存储数据感觉数据结构不是很清晰的时候,就需要新加第二张表或者多张表来进行联合查询对象信,一般 ...

  9. android sqlite 中 创建表 不要使用 IF NOT EXISTS + TA...

    2019独角兽企业重金招聘Python工程师标准>>> android sqlite 中 创建表 不要使用 "IF NOT EXISTS " + TABLE_NA ...

  10. React学习(3)——列表、键值与表单

    为什么80%的码农都做不了架构师?>>>    本文记录了在官网学习如何使用JSX+ES6开发React的过程. . 全文共分为3篇内容: JSX语法与React组件 状态.事件与动 ...

最新文章

  1. java mysql 是否插入 成功_您如何确定使用Java和MySQL插入或更新是否成功?
  2. 计算点、线、面等元素之间的交点、交线、封闭区域面积和闭合集(续1)
  3. 多线程threading
  4. pl/sql中建用户
  5. Python成长之路第二篇(3)_字典的置函数用法
  6. Spring boot配置Dubbo三种方式
  7. 记第一次线下AWD感受及复现
  8. 【XSY2111】Chef and Churus 分块 树状数组
  9. idea 自动生产序列吗,IDEA自动生成序列化Id
  10. MySql的存储过程介绍及语法实例操作
  11. 嵌入式中常见的存储器总结(二)SRAM VS DRAM
  12. C++多线程的简单例子
  13. 今天小小的总结一下最近的小程序中的问题
  14. [css]通过transform缩放邮件客户端h5页面
  15. Ubuntu18.04安装Oracle11g
  16. SAP 消息号 KE391:在 CO-PA中分配条件类型PR00的问题
  17. 10年老程序员:到底是学前端好还是后端好?
  18. 大数据多租户的概念_大数据平台 多租户
  19. python读取excel的路径
  20. Learning to Detect A Salient Object (学习探测显著性物体)

热门文章

  1. 计算机无法识别建行网银盾,建行网银盾无法识别怎么办 几招办法教你轻松解决...
  2. NC:恢复菌群多样性或能降低耐药性
  3. 时空数据生成对抗网络研究综述(下)
  4. 如何拆分PDF文件,PDF如何拆分页面
  5. 国开电大 广告心理学 形考任务
  6. Zabbix监控系统系列之十一:拓扑图绘制
  7. 爽!Android模拟器可以运行ARM应用了
  8. 慕课秒杀项目seckill
  9. 学计算机要数学吗,学习计算机真的需要数学能力超强吗?
  10. 免费节假日API第一时间更新2019年节假日放假安排 可怜的五一