我曾用eclipse进行安卓培训,但现在使用Intellij IDEA 13。我已经习惯了eclipse的图形化字符串编辑器,它可以为我按字母排序string.xml文件。 我想在intelliJ中做同样的事情,但找不到任何解决方案。 这就是代码的样子
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">ActionBar App</string>
<string name="hello_world">Hello world!</string>
<string name="action_settings">Settings</string>
</resources>
我想按字母顺序排序,就像这样
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="action_settings">Settings</string>
<string name="app_name">ActionBar App</string>
<string name="hello_world">Hello world!</string>
</resources>
如何做到这一点?请帮助我们!