0

我的布局中有一个 imageview 和一个 textview,我想通过触摸移动这个 imageview。它的工作,但问题是 textview 也移动,你能告诉我如何解决它吗?

这是我的代码

private ImageView img;
private int status=0;
TextView tv;
RelativeLayout.LayoutParams params;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
     img=(ImageView)findViewById(R.id.imageView1);
     img.setOnTouchListener(new View.OnTouchListener() {

        @Override
        public boolean onTouch(View arg0, MotionEvent arg1) {
            // TODO Auto-generated method stub

            status=1;

        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.activity_main, menu);

    return false;
}


@Override
public boolean onTouchEvent(MotionEvent event) {
// TODO Auto-generated method stub

    if( status==1)
    {
        LayoutParams lp = new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT);
        lp.topMargin=(int)event.getRawY();
        lp.leftMargin=(int)event.getRawX();
        img.setLayoutParams(lp);
    }
    if(event.getAction()==MotionEvent.ACTION_UP){
    status=0;
    }
return super.onTouchEvent(event);

} }

这是我的 XML

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:layout_marginBottom="84dp"
    android:src="@drawable/ic_launcher" />

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/imageView1"
    android:layout_alignParentTop="true"
    android:layout_marginTop="119dp"
    android:text="TextView" />

4

1 回答 1

0

案例关闭,天哪,我忘记了,因为我使用相对布局并且 textview 与 imageview1 对齐 感谢您的帮助

于 2013-02-19T15:57:34.823 回答