How can I set up Vim for Android development?

后端 未结 5 913
眼角桃花
眼角桃花 2021-01-29 19:08

Can anyone describe a good Vim setup for Android Development? I\'m using Eclipse for now but I would really like to use Vim because it\'s faster and I like it better. I\'m not i

相关标签:
5条回答
  • 2021-01-29 19:10

    I have been working on a vim plugin for android development: https://github.com/hsanson/vim-android. Still work in progress but it has most functionality needed for android development using vim.

    I still have some issues to solve but most are not related to the plugin:

    • Gradle errors from aapt report the wrong file. This makes jumping to the error from the quickfix window a pain as it opens the wrong file.
    • I cannot make javacomplete work correctly. When auto completing a class I wrote it gets stuck in "Searching..." and when auto completing a library or external JAR method javacomplete spits hundreds of errors making it impossible to use.
    0 讨论(0)
  • 2021-01-29 19:10

    Both of what @Dave and @buru suggested led me to work on a plugin for Vim that'd help you work on development in Vim for Android applications. Feature parity to top-level tools like the visual development isn't there yet, but I was wondering if we could generate some components by using Fries and extending it.

    The plugin is called android.vim and it was on Github @ jalcine.github.io/android.vim. I'm very open to ideas and pull-requests so feel free!

    Edit: I've taken down this plugin because I haven't the time or focus to work on it :(

    0 讨论(0)
  • 2021-01-29 19:16

    I've once had to do some Android development on a netbook, and set up a nice Vim setup for this purpose. Seriously, it's easier than it seems:

    • Run emulator from the command line. It's better to do it anyway. I started mine with something like this:

      emulator -avd BlaDevice -no-boot-anim -scale 0.65 -show-kernel

    • To build and reinstall your modified app to the emulator, simply run ant reinstall from the project root. Map this command in Vim to your key combination of choice.

    • I've used typical Vim setup: NERDTree, FuzzyFinder, and omnicomplete. Java syntax highlighting works out of the box.

    • Never bothered to install Eclim, omnicomplete works just fine in most cases.

    0 讨论(0)
  • 2021-01-29 19:20

    I have just create a vim script for android development, it is called adt.vim, and I am using it, hope you will like it. http://www.vim.org/scripts/script.php?script_id=4330

    If any suggestion, please tell me, it is still under improve

    0 讨论(0)
  • 2021-01-29 19:25

    I've only done a little bit of Android development with VIM, but I'd very much suggest getting your head around Ant (which the SDK uses to build projects from the command line), and perhaps Maven if you're daring. You'll be using Ant a lot!

    There are a few tab/auto-complete VIM scripts around, but don't expect them to be anywhere near as quick or useful as Eclipse. I've found myself doing a lot more typing than I'm used to from Eclipse...

    0 讨论(0)
提交回复
热议问题