So, I created my own View subclass like this:
public class StatsTable extends View {
public StatsTable(Context context) {
super(context);
// TODO Auto-generated constructor stub
}
@Override
public void onDraw(Canvas canvas) {
canvas.drawARGB(255, 1, 0, 0);
}
}
Anyone know what I have to do to reference this in my layout XML?
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en