I need to have a class which extends view that overrides the onSizeChanged method in order to keep track of the size of one of my view elements. I have another class which manages this view and I'd like to have that class accept my view as a View, not as a Sized view. Essentially, I'd like to make the fact that I'm override the onSizeChanged method transparent to the user of the class (of the managing class).
When my management class accepts the view, I need to cast the View to my custom view class. Unfortunately when I do this I get a classcastexception.
This is the function where I am failing. Also, this.root is of type SizeView
public void setContentView(View view) {
this.root = (SizeView) view;
this.window.setContentView(view);
}
Is it possible to do this? Or alternatively, what is the best way to monitor the onSizeChanged method of one of my view variables?
Thanks!