I am new to Android studio, it seems to be great IDE. But I have found that it has really strange key and shortcut mapping. I am using Czech keyboard.

When I try to type ">" by pressing Right ALT + . the symbol is not appearing, and I got message box that says "Go to custom Region. There are no custom foldings regions in the current file."

It is really strange behaviour, I have problem with writing many more characters like brackets,..... I tried to set keymap profiles to Visual Studio and more. But nothing seems to work. I didn't have any of these problems in any other IDE (Netbeans, Eclipse, Visual Studio, Xamarin)

有帮助吗?

解决方案

Add this line:

actionSystem.force.alt.gr=true

to this file:

...\Android\android-studio\bin\idea.properties

As written here: http://youtrack.jetbrains.com/issue/IDEA-91975

其他提示

Yes, well... its problem with "old" keyboards. Newer keyboards don't have Alt Gr keys and IDE doesn't count on this in default.

Solutions:

  1. Buy a new keyboard with no Alt Gr on it (using right Alt instead of Alt Gr is working for me)
  2. Go to File -> Settings -> Keymap and search for implementation - delete Ctrl + Alt + B, hit "Apply" and you can now use this shortcut for "{"
  3. As already mentioned below... add following line to ..\<Android Studio folder>\bin\idea.properties:

    actionSystem.force.alt.gr=true

    (update) Since newer version of AS (not sure which one, should be 2.3.3+), you don't need to manually access the properties file. Go to Help -> Edit Custom Properties and add actionSystem.force.alt.gr=true there.

Go to Preferences -> Keymap and choose Mac OS X as Keymaps.

I have been a long time Visual Studio user, so wanted to leverage all the keyboard shortcuts that I had picked up using Visual Studio.

On Android Studio, I first changed the Keymap to be Visual Studio. You can do this by using Alt+F7 on Windows and then search for Keymap.

By using the Visual Studio Keymap in Android studio, I got only debug related mapping, which was still a minority of what I use in Visual Studio.

So went ahead and added/modified some more mappings. Here is the github link https://github.com/vinayakg/VisualStudioKeymapforAndroidStudio/blob/master/settings.jar.

PR's welcome.

As for '>' sign (AltGr + .) and Android Studio 1.0.1, go to File>Settings, choose Keymap in IDE Settings section, search for "GotoCustomRegion" item (it is located in MainMenu-Navigate) and remove its mapping (via context menu).

If you're using macOS newest versions and have had weird behavior with the shortcuts, try this:

Go to Android Studio -> Preferences -> Keymap

Now change from "Mac OS X" to "Mac OS X 10.5+" and hit apply.

Select Mac OS X 10.5+

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top