Where can I find a single web page with all elements that are usable in an Android layout file?



I found an invaluable resource that has--on ONE page--every element that can be used in Manifest.xml, with the HUGE plus that every element is linked to detailed info about itself. Here's an edited version of it:



<?xml version="1.0" encoding="utf-8"?>

<manifest>

<uses-permission />
<permission />
<permission-tree />
<permission-group />
<instrumentation />
<uses-sdk />
<uses-configuration />
<uses-feature />
<supports-screens />
<compatible-screens />
<supports-gl-texture />

<application>

<activity>
<intent-filter>
<action />
<category />
<data />
</intent-filter>
<meta-data />
</activity>

<activity-alias> ...
</activity-alias>

<service> ...
</service>

<receiver> ...
</receiver>

<provider>
<grant-uri-permission />
<meta-data />
<path-permission />
</provider>

<uses-library />

</application>

</manifest>


Click ANY token above and there's detailed help.


I can't find a similar page for layout XML files.


Is there a web page with all elements that are usable in Android layout XML files that has links to detailed info about each element?


(I have found lots of helpful examples, but there's no substitute for a complete reference whenever available. With examples you're forced to depend on the author's explanation, which has to omit most details.)


(Maybe my limited experience with Android is preventing me from seeing how huge such a file would be and thus couldn't exist.)


No comments:

Post a Comment