Any opportunity to get autocomplete / type-forward / intellisense in Android XML files (Eclipse)

Is there a way to make Eclipse + Android SDK + ADT Plugin offer some kind of autocomplete in XML files if I press CTRL + Space when my cursor is in a place, such as those marked with *.

<LinearLayout id* ... lay*>

The fact is that I think that the above actually worked immediately after the initial installation - although it certainly did not work in style files.

<style name="ActionBarWrapper" parent="Fill_Parent.Vertical">
        <item name="android:layout_height">36dp</item>
            <item name="a*"
</style> 
+3
source share
5 answers

There is an icon in the eclispe toolbar to access the "new xml file for Android."

+3
source

IntelliJ IDEA Eclipse, Android.

http://www.jetbrains.com/idea/

Edition Android

+2

ADT (r9) xml. , ctrl-spacebar, , ( ). , .

+2

: . , . , .

eclipse (, Rinzo XML Editor) , , . , XML ...

> XML

> > Android > Android XML

, (xml-, , ..), - . , . , - -, .

+1

, , "New->XML" xml.

If you create the file using "New->Other->Android->Android XML File", I think the wizards try to open the xml file using the special xml editor instead of the one you configured by default, in this case, I think Rinzo.

In the second case, why don’t you try to find the xml file in the view "Package Explorer"or "Navigator", right-click on the xml file and select Rinzo through the option "Open With".

0
source

Source: https://habr.com/ru/post/1790992/


All Articles