View
ハンドラーを使用してクラスにメッセージを渡そうとしています。しかし、どこが間違っているのかわかりません。私を修正してください。Handler から値を取得した後、canvas を使用して描画したことはありません。
前もって感謝します!
このプログラムを実行した後、ログキャットがメソッドに表示NullPointerException
さonDraw
れるため、線を引くことができません。
public class List extends Activity{
Handler handler=new Handler();
Message msg=new Message();
Bundle bundle=new Bundle();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(new TestView(this));
bundle.putFloat("x1", 10);
bundle.putFloat("y1", 10);
bundle.putFloat("x2", 100);
bundle.putFloat("y2", 100);
msg.setData(bundle);
handler.sendMessage(msg);
}
}
class TestView extends View {
Paint p;
float x1;
float y1;
float x2;
float y2;
public TestView(Context context) {
super(context);
Paint p=new Paint();
p.setColor(Color.BLUE);
Handler handler=new Handler(){
@Override
public void handleMessage(Message msg) {
Looper.prepare();
Bundle bundle=msg.getData();
x1=bundle.getFloat("x1");
y1=bundle.getFloat("y1");
x2=bundle.getFloat("x2");
y2=bundle.getFloat("y2");
Looper.loop();
}
};
}
boolean isDrawing=true;
@Override
protected void onDraw(Canvas canvas) {
canvas.drawLine(x1, y1, x2, y2, p);
invalidate();
}
}