Related questions
Why do we specify namespace in android xml file?
When we write a xml based layout in Android we use the string "xmlns:android="http://schemas.android.com/apk/res/android".
From the books I read it says that this is a namespace, but why do we use this? …
How do I align views at the bottom of the screen?
Here's my layout code;
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:text="@string/…