Lets say I want to extend an e,element calls in Android, For example the Button element.
So I have this class:
Class MyButton extends Button{
...
}
So when I want to use this element I should in the layout xml file put:
<MyButton/>
or
<Button>
Thanks!
You will have to use the fully qualified classname, so:
And make sure that your class is
public.