I am getting this error while creating my .xml file for customdialog in android app.
Unexpected namespace prefix "xmlns" found for tag Linear Layout
Here is my code:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:layout_gravity="center"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android">
<ImageView
...
<ScrollView
...
<LinearLayout
...
**xmlns:android="http://schemas.android.com/apk/res/android">**
<Button
...
<Button
...
<Button
...
</LinearLayout>
</LinearLayout>