我正在做一个牛眼的类型,但我没有使用圆圈而是使用正方形。
但问题是:
一切都完成了,生成其他方格的颜色的算法就完成了。
但是我实施了一个按钮,我用它来刷新牛眼。
问题是我无法做到,需要帮助。
这是MainActivity,从这里我将检测按钮点击。
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
FrameLayout frame = (FrameLayout) findViewById(R.id.frame);
Draw draw = new Draw(this);
frame.addView(draw);
Button refresh = (Button) findViewById(R.id.refresh);
refresh.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
draw.onDraw(canvas);
frame.addView(draw);
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
这是Draw活动,这是我用来渲染图像的活动。
public class Draw extends View {
public Draw(Context context) {
super(context);
// TODO Auto-generated constructor stub
}
Paint prop = new Paint();
Random color = new Random();
@Override
protected void onDraw(Canvas canvas) {
// TODO Auto-generated method stub
super.onDraw(canvas);
int width = getWidth();
int height = getHeight();
int oriwidth = 0;
int oriheight = 0;
for (int x = 0; x < 20; x++) {
int red = color.nextInt();
int green = color.nextInt();
int blue = color.nextInt();
prop.setARGB(0, red, green, blue);
canvas.drawRect(oriwidth += 10, oriheight += 10, width -= 10,
height -= 10, prop);
}
}
}
有人能帮助我吗?对不起英文。
答案 0 :(得分:2)
在onCreate期间以编程方式添加Draw视图有什么特殊原因吗? 尝试在布局xml本身中定义Draw视图。这应解决定义视图宽度/高度的任何问题(确保定义宽度和高度...首先尝试硬编码尺寸,如100dp×100dp)
完成后,请确保将“绘制”视图捕获为活动的成员:
public class MainActivity extends Activity
{
private Draw mDraw;
然后,在你的onCreate:
mDraw = (Draw)findViewById(R.id.myDrawId);
然后,在按钮单击侦听器中,只需调用invalidate:
refresh.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
mDraw.invalidate();
}
});
答案 1 :(得分:0)
尝试使用这部分代码进行更改:
public void onClick(View v) {
MainActivity.this.draw.onDraw(canvas);
MainActivity.this.frame.addView(draw);
}
答案 2 :(得分:0)
您不应直接致电onDraw()
。试试draw.invalidate()
。