I am trying to implement Pinch To Zoom on an Android app I am working on. For this, I have made a Java Class called PinchToZoom using the Android developer's website. However, if I try to launch my app I get an error in my XML file. I am confused as to why though, because I thought I had implemented it correctly. This is the XML code:\[code\]<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="fill_parent"android:layout_height="fill_parent"android:background="#222222"androidrientation="vertical" ><com.andriesse.athena.PinchToZoom android:id="@+id/selectedImage" android:layout_height="fill_parent" android:layout_width="fill_parent" android:adjustViewBounds="true" android:contentDescription="@string/content" /></LinearLayout>\[/code\]I hope you guys can help me out!