This seems like a simple thing, but it does not run. What am I doing wrong?
I'm subclassing ImageView, but if I put it inside XML layouts, it gives:
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.myappSubclass/com.example.myappSubclass.MyActivity}:android.view.InflateException: Binary XML file line #21: Error inflating class com.example.myappSubclass.ImageViewSubclass
Here is my code:
package com.example.myappSubclass;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.ImageView;
import java.util.jar.Attributes;
/**
 * Created by me on 2014-07-11.
 */
public class ImageViewSubclass extends ImageView {
    public Context thisContext;
    public ImageViewSubclass(Context context, AttributeSet attrs, Context thisContext) {
        super(context, attrs);
        this.thisContext = thisContext;
    }
    public ImageViewSubclass(Context context, AttributeSet attrs, int defStyle, Context thisContext) {
        super(context, attrs, defStyle);
        this.thisContext = thisContext;
    }
    public ImageViewSubclass(Context context) {
        super(context);
        this.thisContext = context;
    }
    public void changeImage(){
        this.setImageLevel(0);
    }
And inside the XML I have it simply:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
        >
    <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="Hello World, MyActivity"
            />
    <Button android:layout_width="match_parent" android:layout_height="50dp"
            android:layout_marginLeft="50dp"
            android:layout_marginRight="50dp"
            android:text="Test"
            />
    <com.example.myappSubclass.ImageViewSubclass android:layout_width="fill_parent"
                                                           android:layout_height="fill_parent"/>
    <!--<ImageView android:layout_width="fill_parent" android:layout_height="fill_parent"/>-->
</LinearLayout>
 
    