Reputation: 8645
i have customview, i want to add that in the xml file i tried like this but i am getting this error
Custom view TouchImageView is not using the 2- or 3-argument View constructors;
XML attributes will not work
this is the xml i am using..
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<view
class="com.zoom.TouchImageView"
android:id="@+id/webView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>
Upvotes: 3
Views: 4401
Reputation: 8242
Add the constructor:
public TouchImageView(Context context, AttributeSet attributeSet)
{
super(context, attributeSet);
//TODO:
}
to your custom View class.
Upvotes: 16