Emulator Keyboard Mapping

The table below summarizes the mappings between the emulator keys and and the keys of your keyboard.

Table 2. Emulator keyboard mapping

Emulated Device KeyKeyboard Key
Home HOME
Menu (left softkey) F2 or Page-up button
Star (right softkey) Shift-F2 or Page Down
Back ESC
Call/dial button F3
Hangup/end call button F4
Search F5
Power button F7
Audio volume up button KEYPAD_PLUS, Ctrl-5
Audio volume down button KEYPAD_MINUS, Ctrl-F6
Camera button Ctrl-KEYPAD_5, Ctrl-F3
Switch to previous layout orientation (for example, portrait, landscape) KEYPAD_7, Ctrl-F11
Switch to next layout orientation (for example, portrait, landscape) KEYPAD_9, Ctrl-F12
Toggle cell networking on/off F8
Toggle code profiling F9 (only with -trace startup option)
Toggle fullscreen mode Alt-Enter
Toggle trackball mode F6
Enter trackball mode temporarily (while key is pressed) Delete
DPad left/up/right/down KEYPAD_4/8/6/2
DPad center click KEYPAD_5
Onion alpha increase/decrease KEYPAD_MULTIPLY(*) / KEYPAD_DIVIDE(/)

'Programing > Android' 카테고리의 다른 글

아트릭스 루팅(진저브레드)  (31) 2011.10.15


Android Device Debug

AndroidManiFest.xml에 android:debuggable="true 추가


<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.ex.Test_Layout"
      android:versionCode="1"
      android:versionName="1.0">


    <application android:icon="@drawable/icon" 
     android:label="@string/app_name"
     android:debuggable="true">
        <activity android:name=".Test_Layout"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

    </application>
</manifest>

'Programing' 카테고리의 다른 글

이클립스 자동주석(메소드 주석)  (0) 2011.08.09
이클립스 기능  (0) 2009.12.22

+ Recent posts