Launcher2中热键修改为打开“设置”菜单

packages/apps/Launcher2/res/values/arrays.xml中,
    <string-array name="hotseats" translatable="false">
        <item>intent:#Intent;action=android.intent.action.DIAL;end</item>
        <item>*BROWSER*</item>
    </string-array>
修改为:
    <string-array name="hotseats" translatable="false">
        <item>intent:#Intent;action=android.settings.SETTINGS;end</item>
        <item>*BROWSER*</item>
    </string-array>

还要在packages/apps/Launcher2/src/com/android/launcher2/Launcher.java 中屏蔽事件响应设置:
private void setupViews() {

    //hotseatLeft.setOnClickListener(this);

}

就可以调用设置界面了。

你可能感兴趣的:(browser)