※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
※DrawView.javaのソースコード package jp.tuyano; import android.app.Activity; import android.os.Bundle; public class DrawView extends View { public DrawView(Context context) { super(context); } public DrawView(Context context, AttributeSet attrs) { super(context, attrs); } public void onDraw(Canvas c) { ……略…… } } ※main.xmlへの追記タグ <jp.tuyano.DrawView android:id="@+id/draw1" android:layout_width="fill_parent" android:layout_height="fill_parent" />
<< 前へ |