1

ImageViews私のxmlファイルにはいくつかあります。私のコード セクションでは、希望に応じて画像を移動したいと考えています。そのために、私は行っevent.getx()event.getY() から使用しimageView.layout()ました。このプロセスは機能していません。どうすればその画像を移動できますか?

4

1 に答える 1

1

これが役立つと思います:

    package com.example.moveimageview;


import android.os.Bundle;
import android.app.Activity;
import android.content.Context;
import android.graphics.Canvas;
import android.view.Menu;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
import android.widget.ImageView;
import android.widget.RelativeLayout;


public class MainActivity extends Activity {

    ImageView im;
    RelativeLayout rl;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //getting the wrapper layout from the xml
        rl = (RelativeLayout) findViewById(R.id.relative1);

        //getting the ImageView from xml
        im = (ImageView) findViewById(R.id.myImageView);

        rl.setOnTouchListener(new OnTouchListener() {

            @Override
            public boolean onTouch(View v, MotionEvent e) {
                // TODO Auto-generated method stub
                if(e.getAction()==android.view.MotionEvent.ACTION_DOWN)
                {
                    //sending the new coordinates to the method
                    //that will change the view's location
                    setImageViewLocation(e.getX(), e.getY());


                return true;
                }
                return false;
            }
        });
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    private void setImageViewLocation(float x, float y)
    {
        //setting the coordinates
        im.setX(x);
        im.setY(y);

        runOnUiThread(new Runnable() {

            @Override
            public void run() {
                // TODO Auto-generated method stub
                im.invalidate();//invoking the view onDraw
            }
        });

    }
}

(編集)ImageViewを使いたい場合は、これのonTouchListnerコードを次に示します(以前と同じコードで、OnTouchListnerをこれに置き換えます):

rl.setOnTouchListener(new OnTouchListener() {

        @Override
        public boolean onTouch(View v, MotionEvent e) {
            // TODO Auto-generated method stub
            if(e.getAction()==android.view.MotionEvent.ACTION_DOWN)
            {
                //sending the new coordinates to the method
                //that will change the view's location
                setImageViewLocation(e.getRawX(), e.getRawY());


            return true;
            }

            if(e.getAction()==android.view.MotionEvent.ACTION_MOVE)
            {
                setImageViewLocation(e.getRawX(), e.getRawY());
                return true;
            }
            return false;
        }
    });
于 2013-11-30T23:37:06.040 に答える