what's the story with the android XML namespace?
- by Peter vdL
When you first use a name from the android XML namespace, you have to say where to find it, with an attribute in XML like this:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
However, that URL is a 404 - nothing found there.
The android: namespace is actually included under the locally-installed SDK.
So what's…