ビューの子オブジェクトを作成するアクティビティクラスがあります
public class DaDActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(new DragSurface(this));
}
}
これが私のDragSurface.javaです
public class DragSurface extends View{
public DragSurface(Context context) {
super(context);
setFocusable(true);
}
}
また、dragsurface.xmlファイルがありますが、DragSurface.javaでこのxmlファイルを使用する方法がわかりません。つまり、DragSurface.javaをdragsurface.xmlの背景、ボタンなどで動作させたいのですが、リンクできませんでした。 javaから.xml
手伝ってくれてありがとう..