I\'m wondering if it is possible to create an Android app with only Java. No XML, no other things.
In Eclipse, when I create a new Android Project, the Manifest xml-
I fully agree Van Coding. If you have the proper programming language, you can write much more concise layout definitions than with AXML. A C# example how to replace AXML layouts
ViewGroup Layout(ViewGroup layout, IList contents) {
if (contents != null)
foreach (View v in contents)
layout.AddView(v);
return layout;
}