I am having an error in following xml file. \"Unexpected namespace prefix \"xmlns\" found for tag LinearLayout\". I tried the solutions provided in other similar qu
In an Android xml file, the Android namespace can:
View
in the xml hierarchyor you'll receive an error when building the project. In your case, the top Android view is the ScrollView
, so keep
xmlns:android="http://schemas.android.com/apk/res/android"
in the ScrollView
, and remove it from all other nested Views
, including the LinearLayout
.