so I'm new to android development and i was following a course but when i wanted to run the program i had an error which says: error parsing XML:unbound prefix in line 2 in the code below (this code is in activity_main) i tried many solution from previously answered questions but didn't work
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
app:srcCompat="@android:drawable/ic_dialog_email" />
and here what i have in layout>content_main
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/activity_main">
<LinearLayout
xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">>
<EditText
android:layout_width ="match_parent"
android:layout_height="wrap_content" />
<Button
android:layout_width ="match_parent"
android:layout_height="wrap_content"
android:text ="CALCULATE" />
<LinearLayout
android:layout_width ="match_parent"
android:layout_height="wrap_content">
<TextView
android:text ="Tip"
android:layout_width ="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:layout_width ="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
<LinearLayout
android:layout_width ="match_parent"
android:layout_height="wrap_content">
<TextView
android:text ="Total"
android:layout_width ="wrap_content"
android:layout_height="match_parent" />
<TextView
android:layout_width ="wrap_content"
android:layout_height="match_parent" />
</LinearLayout>
</LinearLayout>
</RelativeLayout>