我遵循原始的android API并使用monodroid编写一个非常简单的CustomView来绘制一个矩形。一旦我进入应用程序,它会自动退出。虽然我用eclipse编写一个纯机器人,但它工作正常。或者当我删除drawRect方法代码时,它也可以正常工作。有谁知道这个或我做错了什么?
此处附上应用代码:
[Activity1.cs]
int count = 1;
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
// Set our view from the "main" layout resource
SetContentView(Resource.Layout.Main);
// Get our button from the layout resource,
// and attach an event to it
Button button = FindViewById<Button>(Resource.Id.MyButton);
LinearLayout layoutRoot = FindViewById<LinearLayout>(Resource.Id.LayoutRoot);
layoutRoot.AddView(new DrawableView(this));
button.Click += delegate { button.Text = string.Format("{0} clicks!", count++); };
}
[DrawableView.cs]
protected override void OnDraw(Android.Graphics.Canvas canvas)
{
base.OnDraw(canvas);
canvas.DrawRect(new Rect(10, 10, 100, 100), new Paint { Color = Color.Red });
}
这是我在日食中使用的代码:
public class DrawableView extends View {
public DrawableView(Context context) {
super(context);
// TODO Auto-generated constructor stub
}
@Override
protected void onDraw(Canvas canvas) {
// TODO Auto-generated method stub
super.onDraw(canvas);
Paint paint = new Paint();
paint.setColor(Color.RED);
canvas.drawRect(new Rect(10, 10, 110, 110), paint);
}
}
非常感谢。 霍华德
答案 0 :(得分:1)
您需要检查Android日志以查看错误:
http://mono-android.net/Documentation/Guides/Android_Debug_Log