最初は空白であるはずの画面に触れるたびに、ボタンが作成されて画面にポップアップするアプリケーションを作成したいと考えています。ここで試したのは、main.xml でボタンを作成し、id で呼び出すことです。次に、この方法を適用しました。
public class TouchButtonActivity extends Activity {
Button b;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
b=(Button) findViewById(R.id.b1);
b.setOnTouchListener(nextListener);
}
public OnTouchListener nextListener = new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
float x = event.getX()*event.getXPrecision();
float y = event.getY()*event.getYPrecision();
FrameLayout.LayoutParams p = new FrameLayout.LayoutParams(FrameLayout.LayoutParams.WRAP_CONTENT, FrameLayout.LayoutParams.WRAP_CONTENT);
p.gravity = Gravity.TOP;
p.leftMargin = (int) x;
p.topMargin = (int) y;
b.setLayoutParams(p);
return true;
}
return false;
}
};
}
これは私のxmlです
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
>
<Button
android:id="@+id/b1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="B" />
</FrameLayout>
どうすればこれを行うことができますか?