what's the story with the android XML namespace?

Posted by Peter vdL on Stack Overflow See other posts from Stack Overflow or by Peter vdL
Published on 2010-06-17T03:24:11Z Indexed on 2010/06/17 3:33 UTC
Read the original article Hit count: 288

Filed under:
|
|
|

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 going on here? Why do I need to include a dead URL? Why doesn't the build system pick it up from the SDK like all the other libraries?

Thanks, just looking for the back story on this.

Peter

© Stack Overflow or respective owner

Related posts about Xml

Related posts about android