Assuming I have something that looks like this:
public class MyExcellentView extends View{
//etc. etc.
}
and in the xml I use it thusly:
<com.my.package.MyExcellentView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
myCustomAttribute="100"
/>
Is there a way to get access to myCustomAttribute
within MyExcellentView
?