{"id":4253,"date":"2018-07-16T13:56:40","date_gmt":"2018-07-16T05:56:40","guid":{"rendered":"http:\/\/www.bookcard.net\/wordpress\/?p=4253"},"modified":"2018-07-16T13:56:40","modified_gmt":"2018-07-16T05:56:40","slug":"android_game_key","status":"publish","type":"post","link":"https:\/\/www.bookcard.net\/wordpress\/android_game_key\/","title":{"rendered":"Android\u904a\u6232\u4e4b\u6309\u9375"},"content":{"rendered":"<figure id=\"attachment_4254\" aria-describedby=\"caption-attachment-4254\" style=\"width: 1024px\" class=\"wp-caption alignnone\"><a href=\"https:\/\/www.bookcard.net\/wordpress\/wp-content\/uploads\/2018\/07\/Android_Game_Key.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-4254\" src=\"https:\/\/www.bookcard.net\/wordpress\/wp-content\/uploads\/2018\/07\/Android_Game_Key.jpg\" alt=\"\" width=\"1024\" height=\"768\" srcset=\"https:\/\/www.bookcard.net\/wordpress\/wp-content\/uploads\/2018\/07\/Android_Game_Key.jpg 1024w, https:\/\/www.bookcard.net\/wordpress\/wp-content\/uploads\/2018\/07\/Android_Game_Key-300x225.jpg 300w, https:\/\/www.bookcard.net\/wordpress\/wp-content\/uploads\/2018\/07\/Android_Game_Key-768x576.jpg 768w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption id=\"caption-attachment-4254\" class=\"wp-caption-text\">Android\u904a\u6232\u4e4b\u6309\u9375<\/figcaption><\/figure>\n<p>Android\u5176\u5be6\u662f\u652f\u6301\u6a19\u6e96\u9375\u76e4.\u5927\u591a\u6578Android\u624b\u6a5f\u53ea\u652f\u6301\u8edf\u9375\u76e4. \u904a\u6232\u8981\u6355\u8db3\u6309\u9375\u4e8b\u4ef6\u4f60\u9700\u8981\u5be6\u73feOnKeyListener\u63a5\u53e3.\u5b83\u901a\u904e\u8207\u63a5\u6536\u9375\u76e4\u4e8b\u4ef6View\u76f8\u9023\u4e26\u63a5\u6536\u6309\u9375\u4e8b\u4ef6.<\/p>\n<p>public boolean onKey(View view,int keyCode,KeyEvent event);<\/p>\n<p>\u6309\u9375\u7de8\u78bckeyCode\u70ba\u6574\u65780~127\u4e00\u5171128\u500b\u6309\u9375.\u5e38\u91cf\u503c\u5f62\u5f0f\u70baKeyEvent.KEYCODE_XXX<\/p>\n<p>\u7372\u53d6\u6309\u9375\u5b57\u7b26:KeyEvent.getUnicodeChar();<\/p>\n<p>\u7372\u53d6\u6309\u9375\u4e8b\u4ef6\u985e\u578b: KeyEvent.getAction();<\/p>\n<table>\n<tbody>\n<tr>\n<td width=\"277\">\u7372\u53d6\u6309\u9375\u4e8b\u4ef6\u985e\u578b: KeyEvent.getAction();<\/td>\n<td width=\"277\">\u7c21\u4ecb<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KeyEvent.ACTION_MULTIPLE<\/td>\n<td width=\"277\">\u9023\u7e8c\u591a\u500b\u91cd\u8907\u9375\u4e8b\u4ef6<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KeyEvent.ACTION_DOWN<\/td>\n<td width=\"277\">\u6309\u4e0b\u6309\u9375\u6642\u89f8\u767c<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KeyEvent.ACTION_UP<\/td>\n<td width=\"277\">\u9b06\u958b\u6309\u9375\u6642\u89f8\u767c<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>\u7576\u9375\u76e4\u6309\u4e0b\u6642\u5176\u503c\u88ab\u4fdd\u5b58\u5728\u9375\u76e4\u5217\u72c0\u614b<\/p>\n<p>public static int\u00a0\u00a0 MAX_KEY = 128;\/\/ 128\u500b\u6309\u9375<\/p>\n<p>public static int[] Key_Action\u00a0 = new int[MAX_KEY];\/\/ \u6309\u9375\u4e8b\u4ef6,\u6309\u4e0b\/\u9001\u958b<\/p>\n<p>public static int[] Key_Code\u00a0\u00a0 = new int[MAX_KEY];\/\/ \u6309\u9375\u4ee3\u78bc<\/p>\n<p>public static int[] Key_Char\u00a0\u00a0 = new int[MAX_KEY];\/\/ \u6309\u9375\u5b57\u7b26<\/p>\n<p>public static int\u00a0 Key_Count\u00a0 = 0; \/\/ \u672a\u8655\u7406\u6309\u9375\u91cf<\/p>\n<p>private static boolean[] Key_State = new boolean[128];\/\/ \u6309\u9375\u7684\u7576\u524d\u72c0\u614btrue\u6309\u4e0b.false\u9b06\u958b<\/p>\n<p>private static KeyboardListener Keyboard_Listener = new KeyboardListener();\/\/\u6309\u9375\u76e3\u807d\u5668<\/p>\n<p>\u5be6\u73fe\u9375\u76e4\u76e3\u807d\u63a5\u53e3\u5f9eView\u4e2d\u63a5\u6536\u9375\u76e4\u4e8b\u4ef6\u4e26\u8655\u7406<\/p>\n<p>static class KeyboardListener implements View.OnKeyListener{<\/p>\n<p>@Override<\/p>\n<p>public boolean onKey(View view, int keyCode, KeyEvent event){<\/p>\n<p>int index;<\/p>\n<p>int Action;<\/p>\n<p>if(Key_Count &gt;= MAX_KEY)<\/p>\n<p>return false;<\/p>\n<p>index = Key_Count;<\/p>\n<p>++Key_Count;<\/p>\n<p>Key_Code[index] = keyCode;\/\/ \u9375\u4ee3\u78bc<\/p>\n<p>Key_Char[index] = event.getUnicodeChar();\/\/ \u9375\u5b57\u7b26<\/p>\n<p>Action = event.getAction();\/\/\u00a0 \u7372\u53d6\u6309\u9375\u4e8b\u4ef6\u985e\u578b<\/p>\n<p>if(Action == KeyEvent.ACTION_MULTIPLE)\/\/ \u591a\u91cd<\/p>\n<p>return false;<\/p>\n<p>if(Action == KeyEvent.ACTION_DOWN)<\/p>\n<p>{\/\/ \u6309\u4e0b<\/p>\n<p>if(keyCode &gt;0 &amp;&amp; keyCode &lt; 127)<\/p>\n<p>Key_State[keyCode] = true;\/\/ \u6309\u4e0b<\/p>\n<p>Key_Action[index] = KeyEvent.ACTION_DOWN;<\/p>\n<p>}<\/p>\n<p>else<\/p>\n<p>if(Action == KeyEvent.ACTION_UP)<\/p>\n<p>{\/\/ \u9b06\u958b<\/p>\n<p>if(keyCode &gt;0 &amp;&amp; keyCode &lt; 127)<\/p>\n<p>Key_State[keyCode] = false;<\/p>\n<p>Key_Action[index] = KeyEvent.ACTION_UP;<\/p>\n<p>}<\/p>\n<p>return false;<\/p>\n<p>}<\/p>\n<p>\u521d\u6b64\u6309\u9375\u76e3\u807d\u5668<\/p>\n<p>public static boolean Init(View view)<\/p>\n<p>{<\/p>\n<p>for(int i=0;i&lt;Key_State.length;++i)<\/p>\n<p>Key_State[i] = false;<\/p>\n<p>view.setOnKeyListener(Keyboard_Listener);\/\/ view\u5c0d\u6309\u9375\u9032\u884c\u76e3\u807d<\/p>\n<p>view.requestFocus();\/\/\u8acb\u6c42\u7126\u9ede<\/p>\n<p>return true;<\/p>\n<p>}<\/p>\n<p>}<\/p>\n<table>\n<tbody>\n<tr>\n<td width=\"184\">\u96fb\u8a71\u9375\u5e38\u91cf<\/td>\n<td width=\"184\">\u6578\u503c<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_CALL<\/td>\n<td width=\"184\">\u64a5\u865f\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_ENDCALL<\/td>\n<td width=\"184\">\u639b\u6a5f\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_HOME<\/td>\n<td width=\"184\">Home\u9375\u8fd4\u56de\u9762<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_MENU<\/td>\n<td width=\"184\">\u83dc\u55ae\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_BACK<\/td>\n<td width=\"184\">\u8fd4\u56de\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_SEARCH<\/td>\n<td width=\"184\">\u641c\u7d22\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_CAMERA<\/td>\n<td width=\"184\">\u62cd\u7167\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_FOCUS<\/td>\n<td width=\"184\">\u62cd\u7167\u5c0d\u7126\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_POWER<\/td>\n<td width=\"184\">\u96fb\u6e90\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_NOTIFICATION<\/td>\n<td width=\"184\">\u901a\u77e5\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_MUTE<\/td>\n<td width=\"184\">\u8a71\u7b52\u975c\u97f3\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_VOLUME_MUTE<\/td>\n<td width=\"184\">\u63da\u8072\u5668\u975c\u97f3\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_VOLUME_UP<\/td>\n<td width=\"184\">\u97f3\u91cf\u589e\u52a0\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_VOLUME_DOWN<\/td>\n<td width=\"184\">\u97f3\u91cf\u6e1b\u5c0f\u9375<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<table>\n<tbody>\n<tr>\n<td width=\"184\">\u63a7\u5236\u9375\u5e38\u91cf<\/td>\n<td width=\"184\">\u6578\u503c<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_ENTER<\/td>\n<td width=\"184\">ENTER\u56de\u8eca\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_ESCAPE<\/td>\n<td width=\"184\">ESC\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_DPAD_CENTER<\/td>\n<td width=\"184\">\u65b9\u5411\u9375\/\u78ba\u5b9a\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_DPAD_UP<\/td>\n<td width=\"184\">\u65b9\u5411\u9375\/\u5411\u4e0a\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_DPAD_DOWN<\/td>\n<td width=\"184\">\u65b9\u5411\u9375\/\u5411\u4e0b\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_DPAD_LEFT<\/td>\n<td width=\"184\">\u65b9\u5411\u9375\/\u5411\u5de6\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_DPAD_RIGHT<\/td>\n<td width=\"184\">\u65b9\u5411\u9375\/\u5411\u53f3\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_MOVE_HOME<\/td>\n<td width=\"184\">\u5149\u6a19\u79fb\u52d5\u5230\u958b\u59cb\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_MOVE_END<\/td>\n<td width=\"184\">\u5149\u6a19\u79fb\u52d5\u5230\u672b\u5c3e\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_PAGE_UP<\/td>\n<td width=\"184\">\u5411\u4e0a\u7ffb\u9801\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_PAGE_DOWN<\/td>\n<td width=\"184\">\u5411\u4e0b\u7ffb\u9801\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_DEL<\/td>\n<td width=\"184\">\u9000\u683c\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_FORWARD_DEL<\/td>\n<td width=\"184\">\u522a\u9664\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_INSERT<\/td>\n<td width=\"184\">\u63d2\u5165\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_TAB<\/td>\n<td width=\"184\">Tab\u9375\/\u7126\u9ede\u5207\u63db\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_NUM_LOCK<\/td>\n<td width=\"184\">\u5c0f\u9375\u76e4\u9396<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_CAPS_LOCK<\/td>\n<td width=\"184\">\u5927\u5beb\u9396\u5b9a\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_BREAK<\/td>\n<td width=\"184\">Break\/Pause\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_SCROLL_LOCK<\/td>\n<td width=\"184\">\u6efe\u52d5\u9396\u5b9a\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_ZOOM_IN<\/td>\n<td width=\"184\">\u653e\u5927\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_ZOOM_OUT<\/td>\n<td width=\"184\">\u7e2e\u5c0f\u9375<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<table>\n<tbody>\n<tr>\n<td width=\"184\">\u7d44\u5408\u9375\u5e38\u91cf<\/td>\n<td width=\"184\">\u7c21\u4ecb<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_ALT_LEFT<\/td>\n<td width=\"184\">Alt+Left<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_ALT_RIGHT<\/td>\n<td width=\"184\">Alt+Right<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_CTRL_LEFT<\/td>\n<td width=\"184\">Control+Left<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_CTRL_RIGHT<\/td>\n<td width=\"184\">Control+Right<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_SHIFT_LEFT<\/td>\n<td width=\"184\">Shift+Left<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_SHIFT_RIGHT<\/td>\n<td width=\"184\">Shift+Right<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<table>\n<tbody>\n<tr>\n<td width=\"184\">\u6578\u5b57\u8207\u5b57\u6bcd\u9375\u5e38\u91cf<\/td>\n<td width=\"184\">\u7c21\u4ecb<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_0<\/td>\n<td width=\"184\">\u6578\u5b57\u93750<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_1<\/td>\n<td width=\"184\">\u6578\u5b57\u93751<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_2<\/td>\n<td width=\"184\">\u6578\u5b57\u93752<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_3<\/td>\n<td width=\"184\">\u6578\u5b57\u93753<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_4<\/td>\n<td width=\"184\">\u6578\u5b57\u93754<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_5<\/td>\n<td width=\"184\">\u6578\u5b57\u93755<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_6<\/td>\n<td width=\"184\">\u6578\u5b57\u93756<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_7<\/td>\n<td width=\"184\">\u6578\u5b57\u93757<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_8<\/td>\n<td width=\"184\">\u6578\u5b57\u93758<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_9<\/td>\n<td width=\"184\">\u6578\u5b57\u93759<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_A<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375A<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_B<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375B<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_C<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375C<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_D<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375D<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_E<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375E<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_F<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375F<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_G<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375G<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_H<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375H<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_I<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375I<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_J<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375J<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_K<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375K<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_L<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375L<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_M<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375M<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_N<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375N<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_O<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375O<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_P<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375P<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_Q<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375Q<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_R<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375R<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_S<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375S<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_T<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375T<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_U<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375U<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_V<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375V<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_W<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375W<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_X<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375X<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_Y<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375Y<\/td>\n<\/tr>\n<tr>\n<td width=\"184\">KEYCODE_Z<\/td>\n<td width=\"184\">\u5b57\u6bcd\u9375Z<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<table>\n<tbody>\n<tr>\n<td width=\"190\">\u7b26\u865f\u9375\u5e38\u91cf<\/td>\n<td width=\"182\">\u7c21\u4ecb<\/td>\n<\/tr>\n<tr>\n<td width=\"190\">KEYCODE_PLUS<\/td>\n<td width=\"182\">\u52a0\u865f+<\/td>\n<\/tr>\n<tr>\n<td width=\"190\">KEYCODE_MINUS<\/td>\n<td width=\"182\">\u6e1b\u865f-<\/td>\n<\/tr>\n<tr>\n<td width=\"190\">KEYCODE_STAR<\/td>\n<td width=\"182\">\u4e58\u865f*<\/td>\n<\/tr>\n<tr>\n<td width=\"190\">KEYCODE_SLASH<\/td>\n<td width=\"182\">\u9664\u865f\/<\/td>\n<\/tr>\n<tr>\n<td width=\"190\">KEYCODE_EQUALS<\/td>\n<td width=\"182\">\u7b49\u865f=<\/td>\n<\/tr>\n<tr>\n<td width=\"190\">KEYCODE_AT<\/td>\n<td width=\"182\">\u7b26\u865f\u9375@<\/td>\n<\/tr>\n<tr>\n<td width=\"190\">KEYCODE_POUND<\/td>\n<td width=\"182\">\u4e95\u865f\u9375#<\/td>\n<\/tr>\n<tr>\n<td width=\"190\">KEYCODE_APOSTROPHE<\/td>\n<td width=\"182\">\u55ae\u5f15\u865f&#8217;<\/td>\n<\/tr>\n<tr>\n<td width=\"190\">KEYCODE_BACKSLASH<\/td>\n<td width=\"182\">\u659c\u6746\\<\/td>\n<\/tr>\n<tr>\n<td width=\"190\">KEYCODE_COMMA<\/td>\n<td width=\"182\">\u9017\u865f,<\/td>\n<\/tr>\n<tr>\n<td width=\"190\">KEYCODE_PERIOD<\/td>\n<td width=\"182\">\u53e5\u865f.<\/td>\n<\/tr>\n<tr>\n<td width=\"190\">KEYCODE_LEFT_BRACKET<\/td>\n<td width=\"182\">\u5de6\u62ec\u865f[<\/td>\n<\/tr>\n<tr>\n<td width=\"190\">KEYCODE_RIGHT_BRACKET<\/td>\n<td width=\"182\">\u53f3\u62ec\u865f]<\/td>\n<\/tr>\n<tr>\n<td width=\"190\">KEYCODE_SEMICOLON<\/td>\n<td width=\"182\">\u5206\u865f;<\/td>\n<\/tr>\n<tr>\n<td width=\"190\">KEYCODE_GRAVE<\/td>\n<td width=\"182\">`<\/td>\n<\/tr>\n<tr>\n<td width=\"190\">KEYCODE_SPACE<\/td>\n<td width=\"182\">\u7a7a\u683c\u9375<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<table>\n<tbody>\n<tr>\n<td width=\"277\">\u5c0f\u9375\u76e4\u5e38\u91cf<\/td>\n<td width=\"277\">\u7c21\u4ecb<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_NUMPAD_0<\/td>\n<td width=\"277\">\u5c0f\u9375\u76e4\u6578\u5b57\u93750<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_NUMPAD_1<\/td>\n<td width=\"277\">\u5c0f\u9375\u76e4\u6578\u5b57\u93751<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_NUMPAD_2<\/td>\n<td width=\"277\">\u5c0f\u9375\u76e4\u6578\u5b57\u93752<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_NUMPAD_3<\/td>\n<td width=\"277\">\u5c0f\u9375\u76e4\u6578\u5b57\u93753<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_NUMPAD_4<\/td>\n<td width=\"277\">\u5c0f\u9375\u76e4\u6578\u5b57\u93754<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_NUMPAD_5<\/td>\n<td width=\"277\">\u5c0f\u9375\u76e4\u6578\u5b57\u93755<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_NUMPAD_6<\/td>\n<td width=\"277\">\u5c0f\u9375\u76e4\u6578\u5b57\u93756<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_NUMPAD_7<\/td>\n<td width=\"277\">\u5c0f\u9375\u76e4\u6578\u5b57\u93757<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_NUMPAD_8<\/td>\n<td width=\"277\">\u5c0f\u9375\u76e4\u6578\u5b57\u93758<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_NUMPAD_9<\/td>\n<td width=\"277\">\u5c0f\u9375\u76e4\u6578\u5b57\u93759<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_NUMPAD_ADD<\/td>\n<td width=\"277\">\u5c0f\u9375\u76e4\u52a0\u865f+<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_NUMPAD_SUBTRACT<\/td>\n<td width=\"277\">\u5c0f\u9375\u76e4\u6e1b\u865f-<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_NUMPAD_MULTIPLY<\/td>\n<td width=\"277\">\u5c0f\u9375\u76e4\u4e58\u865f*<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_NUMPAD_DIVIDE<\/td>\n<td width=\"277\">\u5c0f\u9375\u76e4\u9664\u865f&#8217;\/&#8217;<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_NUMPAD_EQUALS<\/td>\n<td width=\"277\">\u5c0f\u9375\u76e4\u7b49\u865f&#8217;=&#8217;<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_NUMPAD_COMMA<\/td>\n<td width=\"277\">\u5c0f\u9375\u76e4\u9017\u865f&#8217;,&#8217;<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_NUMPAD_DOT<\/td>\n<td width=\"277\">\u5c0f\u9375\u76e4\u9ede\u865f&#8217;.&#8217;<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_NUMPAD_LEFT_PAREN<\/td>\n<td width=\"277\">\u5c0f\u9375\u76e4\u5de6\u62ec\u5f27'(&#8216;<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_NUMPAD_RIGHT_PAREN<\/td>\n<td width=\"277\">\u5c0f\u9375\u76e4\u5de6\u62ec\u5f27&#8217;)&#8217;<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_NUMPAD_ENTER<\/td>\n<td width=\"277\">\u5c0f\u9375\u76e4\u56de\u8eca\u9375<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<table>\n<tbody>\n<tr>\n<td width=\"277\">\u529f\u80fd\u9375\u5e38\u91cf<\/td>\n<td width=\"277\">\u7c21\u4ecb<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_F1<\/td>\n<td width=\"277\">\u6309\u9375F1<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_F2<\/td>\n<td width=\"277\">\u6309\u9375F2<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_F3<\/td>\n<td width=\"277\">\u6309\u9375F3<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_F4<\/td>\n<td width=\"277\">\u6309\u9375F4<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_F5<\/td>\n<td width=\"277\">\u6309\u9375F5<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_F6<\/td>\n<td width=\"277\">\u6309\u9375F6<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_F7<\/td>\n<td width=\"277\">\u6309\u9375F7<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_F8<\/td>\n<td width=\"277\">\u6309\u9375F8<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_F9<\/td>\n<td width=\"277\">\u6309\u9375F9<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_F10<\/td>\n<td width=\"277\">\u6309\u9375F10<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_F11<\/td>\n<td width=\"277\">\u6309\u9375F11<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_F12<\/td>\n<td width=\"277\">\u6309\u9375F12<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<table>\n<tbody>\n<tr>\n<td width=\"277\">\u591a\u5a92\u9ad4\u9375\u5e38\u91cf<\/td>\n<td width=\"277\">\u7c21\u4ecb<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_MEDIA_PLAY<\/td>\n<td width=\"277\">\u64ad\u653e\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_MEDIA_STOP<\/td>\n<td width=\"277\">\u505c\u6b62\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_MEDIA_PAUSE<\/td>\n<td width=\"277\">\u66ab\u505c\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_MEDIA_PLAY_PAUSE<\/td>\n<td width=\"277\">\u64ad\u653e\/\u66ab\u505c\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_MEDIA_FAST_FORWARD<\/td>\n<td width=\"277\">\u5feb\u9032\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_MEDIA_REWIND<\/td>\n<td width=\"277\">\u5feb\u9000\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_MEDIA_NEXT<\/td>\n<td width=\"277\">\u4e0b\u4e00\u9996\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_MEDIA_PREVIOUS<\/td>\n<td width=\"277\">\u4e0a\u4e00\u9996\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_MEDIA_CLOSE<\/td>\n<td width=\"277\">\u95dc\u9589\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_MEDIA_EJECT<\/td>\n<td width=\"277\">\u5f48\u51fa\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_MEDIA_RECORD<\/td>\n<td width=\"277\">\u9304\u97f3\u9375<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<table>\n<tbody>\n<tr>\n<td width=\"277\">\u901a\u7528\u904a\u6232\u624b\u67c4\u6309\u9215\u6309\u9375\u5e38\u91cf<\/td>\n<td width=\"277\">\u7c21\u4ecb<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_1<\/td>\n<td width=\"277\">#1<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_2<\/td>\n<td width=\"277\">#2<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_3<\/td>\n<td width=\"277\">#3<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_4<\/td>\n<td width=\"277\">#4<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_5<\/td>\n<td width=\"277\">#5<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_6<\/td>\n<td width=\"277\">#6<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_7<\/td>\n<td width=\"277\">#7<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_8<\/td>\n<td width=\"277\">#8<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_9<\/td>\n<td width=\"277\">#9<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_10<\/td>\n<td width=\"277\">#10<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_11<\/td>\n<td width=\"277\">#11<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_12<\/td>\n<td width=\"277\">#12<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_13<\/td>\n<td width=\"277\">#13<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_14<\/td>\n<td width=\"277\">#14<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_15<\/td>\n<td width=\"277\">#15<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_16<\/td>\n<td width=\"277\">#16<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_A<\/td>\n<td width=\"277\">\u624b\u67c4A<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_B<\/td>\n<td width=\"277\">\u624b\u67c4B<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_C<\/td>\n<td width=\"277\">\u624b\u67c4C<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_X<\/td>\n<td width=\"277\">\u624b\u67c4X<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_Y<\/td>\n<td width=\"277\">\u624b\u67c4 Y<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_Z<\/td>\n<td width=\"277\">\u624b\u67c4 Z<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_L1<\/td>\n<td width=\"277\">\u624b\u67c4 L1<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_L2<\/td>\n<td width=\"277\">\u624b\u67c4L2<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_R1<\/td>\n<td width=\"277\">\u624b\u67c4R1<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_R2<\/td>\n<td width=\"277\">\u624b\u67c4R2<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_MODE<\/td>\n<td width=\"277\">\u624b\u67c4Mode<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_SELECT<\/td>\n<td width=\"277\">\u624b\u67c4Select<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_START<\/td>\n<td width=\"277\">\u624b\u67c4Start<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_THUMBL<\/td>\n<td width=\"277\">\u5de6\u62c7\u6307\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BUTTON_THUMBR<\/td>\n<td width=\"277\">\u53f3\u62c7\u6307\u9375<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<table>\n<tbody>\n<tr>\n<td width=\"277\">\u6309\u9375\u5e38\u91cf<\/td>\n<td width=\"277\">\u7c21\u4ecb<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_NUM<\/td>\n<td width=\"277\">Number modifier<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_INFO<\/td>\n<td width=\"277\">Info<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_APP_SWITCH<\/td>\n<td width=\"277\">App switch<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_BOOKMARK<\/td>\n<td width=\"277\">Bookmark<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_AVR_INPUT<\/td>\n<td width=\"277\">A\/V Receiver input<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_AVR_POWER<\/td>\n<td width=\"277\">A\/V Receiver power<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_CAPTIONS<\/td>\n<td width=\"277\">Toggle captions<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_CHANNEL_DOWN<\/td>\n<td width=\"277\">Channel down<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_CHANNEL_UP<\/td>\n<td width=\"277\">Channel up<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_CLEAR<\/td>\n<td width=\"277\">Clear<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_DVR<\/td>\n<td width=\"277\">DVR<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_ENVELOPE<\/td>\n<td width=\"277\">Envelope special function<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_EXPLORER<\/td>\n<td width=\"277\">Explorer special function<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_FORWARD<\/td>\n<td width=\"277\">Forward<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_FORWARD_DEL<\/td>\n<td width=\"277\">Forward Delete<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_FUNCTION<\/td>\n<td width=\"277\">Function modifier<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_GUIDE<\/td>\n<td width=\"277\">Guide<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_HEADSETHOOK<\/td>\n<td width=\"277\">Headset Hook<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_META_LEFT<\/td>\n<td width=\"277\">Left Meta modifier<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_META_RIGHT<\/td>\n<td width=\"277\">Right Meta modifier<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_PICTSYMBOLS<\/td>\n<td width=\"277\">Picture Symbols modifier<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_PROG_BLUE<\/td>\n<td width=\"277\">Blue \u201cprogrammable\u201d<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_PROG_GREEN<\/td>\n<td width=\"277\">Green \u201cprogrammable\u201d<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_PROG_RED<\/td>\n<td width=\"277\">Red \u201cprogrammable\u201d<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_PROG_YELLOW<\/td>\n<td width=\"277\">Yellow \u201cprogrammable\u201d<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_SETTINGS<\/td>\n<td width=\"277\">Settings<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_SOFT_LEFT<\/td>\n<td width=\"277\">Soft Left<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_SOFT_RIGHT<\/td>\n<td width=\"277\">Soft Right<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_STB_INPUT<\/td>\n<td width=\"277\">Set-top-box input<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_STB_POWER<\/td>\n<td width=\"277\">Set-top-box power<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_SWITCH_CHARSET<\/td>\n<td width=\"277\">Switch Charset modifier<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_SYM<\/td>\n<td width=\"277\">Symbol modifier<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_SYSRQ<\/td>\n<td width=\"277\">System Request \/ Print Screen<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_TV<\/td>\n<td width=\"277\">TV\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_TV_INPUT<\/td>\n<td width=\"277\">TV input\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_TV_POWER<\/td>\n<td width=\"277\">TV power\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_WINDOW<\/td>\n<td width=\"277\">Window\u9375<\/td>\n<\/tr>\n<tr>\n<td width=\"277\">KEYCODE_UNKNOWN<\/td>\n<td width=\"277\">\u672a\u77e5\u6309\u9375<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Android\u5176\u5be6\u662f\u652f\u6301\u6a19\u6e96\u9375\u76e4.\u5927\u591a\u6578Android\u624b\u6a5f\u53ea\u652f\u6301\u8edf\u9375\u76e4. \u904a\u6232\u8981\u6355\u8db3\u6309\u9375\u4e8b\u4ef6\u4f60\u9700\u8981\u5be6\u73feOnKe &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.bookcard.net\/wordpress\/android_game_key\/\" class=\"more-link\">\u7e7c\u7e8c\u95b1\u8b80 <span class=\"screen-reader-text\">Android\u904a\u6232\u4e4b\u6309\u9375<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[2],"class_list":["post-4253","post","type-post","status-publish","format-standard","hentry","category-android","tag-android","entry"],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.bookcard.net\/wordpress\/wp-json\/wp\/v2\/posts\/4253","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.bookcard.net\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.bookcard.net\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.bookcard.net\/wordpress\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.bookcard.net\/wordpress\/wp-json\/wp\/v2\/comments?post=4253"}],"version-history":[{"count":1,"href":"https:\/\/www.bookcard.net\/wordpress\/wp-json\/wp\/v2\/posts\/4253\/revisions"}],"predecessor-version":[{"id":4255,"href":"https:\/\/www.bookcard.net\/wordpress\/wp-json\/wp\/v2\/posts\/4253\/revisions\/4255"}],"wp:attachment":[{"href":"https:\/\/www.bookcard.net\/wordpress\/wp-json\/wp\/v2\/media?parent=4253"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.bookcard.net\/wordpress\/wp-json\/wp\/v2\/categories?post=4253"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.bookcard.net\/wordpress\/wp-json\/wp\/v2\/tags?post=4253"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}