I'm in Android Studio, and I get "Namespace is not bound" when running a lint check. What does this mean? My code still works fine, I'm just curious. The warning is for the LinearLayout tag (opening and closing).
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/outerLayoutWithMargins"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/bla"
android:gravity="center"
android:layout_marginTop="20dp"
android:layout_marginBottom="4dp"
android:textStyle="bold"
android:textColor="@color/bla"/>
<View
android:id="@+id/bla"
android:background="@color/bla"
android:layout_width="fill_parent"
android:layout_height="3dp" />
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:choiceMode="singleChoice"
android:divider="#000000"
android:dividerHeight="0.5dp"/>
</LinearLayout>