3

最初は空白であるはずの画面に触れるたびに、ボタンが作成されて画面にポップアップするアプリケーションを作成したいと考えています。ここで試したのは、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>

どうすればこれを行うことができますか?

4

2 に答える 2

5

画面のどこをクリックしてもボタンを追加したい場合は、相対レイアウトを使用して、そのレイアウトにタッチリスナーを追加できると思います。その画面に触れている間、そのレイアウトにボタンを追加して、新しいタッチのように新しいボタンがポップアップするようにします。ありがとうございました

コードは次のようになります --

メインレイアウト

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/rl"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

そして、クラスは次のようになります-

rl = (RelativeLayout) findViewById(R.id.rl);
    rl.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            // TODO Auto-generated method stub
            float x = event.getX()*event.getXPrecision();
            float y = event.getY()*event.getYPrecision();

            Button btn = new Button(getApplicationContext());
            RelativeLayout.LayoutParams bp = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
            bp.leftMargin = (int) x;
            bp.topMargin = (int) y;
            btn.setLayoutParams(bp);
            rl.addView(btn);

            return false;
        }
    });
于 2012-08-30T07:43:51.627 に答える
0

何を達成しようとしているのかはわかりませんが、

1)main.xmlレイアウトがFrameLayout

2) 次に、コードを変更します。

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;
            }
        };

編集

あなたはこれを忘れました:

setOnTouchListener(nextListener);
于 2012-08-30T06:11:54.137 に答える