Java 当RelativeLayout进入ScrollView时,触摸移动TextView不会';我不能正常工作

Java 当RelativeLayout进入ScrollView时,触摸移动TextView不会';我不能正常工作,java,android,touch,Java,Android,Touch,在我的应用程序中,我以编程方式创建了一个TextView,用户可以通过触摸来移动它。这是我的main活动code: rleEditImage= (FrameLayout) findViewById(R.id.rleEditImage); TextView newTextView = new TextView(G.context); newTextView.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT

在我的应用程序中,我以编程方式创建了一个
TextView
,用户可以通过触摸来移动它。这是我的
main活动
code:

    rleEditImage= (FrameLayout) findViewById(R.id.rleEditImage);

    TextView newTextView = new TextView(G.context);
    newTextView.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
    newTextView.setText("TextView");
    newTextView.setId(2);
    newTextView.setTextSize(26);
    rleEditImage.addView(newTextView);
    final TextView txt = (TextView) findViewById(2);
    txt.setOnTouchListener(new OnTouchListener() {

        @Override
        public boolean onTouch(View view, MotionEvent event) {
            final int X = (int) event.getRawX();
            final int Y = (int) event.getRawY();
            switch (event.getAction() & MotionEvent.ACTION_MASK) {
            case MotionEvent.ACTION_DOWN:
                RelativeLayout.LayoutParams lParams = (RelativeLayout.LayoutParams) view.getLayoutParams();
                _xDelta = X - lParams.leftMargin;
                _yDelta = Y - lParams.topMargin;
                break;
            case MotionEvent.ACTION_UP:
                break;
            case MotionEvent.ACTION_POINTER_DOWN:
                break;
            case MotionEvent.ACTION_POINTER_UP:
                break;
            case MotionEvent.ACTION_MOVE:
                RelativeLayout.LayoutParams layoutParams = (RelativeLayout.LayoutParams) view.getLayoutParams();
                layoutParams.leftMargin = X - _xDelta;
                layoutParams.topMargin = Y - _yDelta;
                layoutParams.rightMargin = -250;
                layoutParams.bottomMargin = -250;
                view.setLayoutParams(layoutParams);
                break;
            }
            rleEditImage.invalidate();
            return true;
        }
    });
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#dfdfdf"
android:orientation="vertical" >
<ScrollView
    android:id="@+id/srlCreate"
    android:layout_width="match_parent"
    android:layout_height="fill_parent"
    android:fillViewport="true"
     >
    <RelativeLayout
        android:id="@+id/rleEditImage"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:clickable="true"
        android:focusable="true"
        android:focusableInTouchMode="true" >
    </RelativeLayout>
</ScrollView>
这是我的
.xml
代码:

    rleEditImage= (FrameLayout) findViewById(R.id.rleEditImage);

    TextView newTextView = new TextView(G.context);
    newTextView.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
    newTextView.setText("TextView");
    newTextView.setId(2);
    newTextView.setTextSize(26);
    rleEditImage.addView(newTextView);
    final TextView txt = (TextView) findViewById(2);
    txt.setOnTouchListener(new OnTouchListener() {

        @Override
        public boolean onTouch(View view, MotionEvent event) {
            final int X = (int) event.getRawX();
            final int Y = (int) event.getRawY();
            switch (event.getAction() & MotionEvent.ACTION_MASK) {
            case MotionEvent.ACTION_DOWN:
                RelativeLayout.LayoutParams lParams = (RelativeLayout.LayoutParams) view.getLayoutParams();
                _xDelta = X - lParams.leftMargin;
                _yDelta = Y - lParams.topMargin;
                break;
            case MotionEvent.ACTION_UP:
                break;
            case MotionEvent.ACTION_POINTER_DOWN:
                break;
            case MotionEvent.ACTION_POINTER_UP:
                break;
            case MotionEvent.ACTION_MOVE:
                RelativeLayout.LayoutParams layoutParams = (RelativeLayout.LayoutParams) view.getLayoutParams();
                layoutParams.leftMargin = X - _xDelta;
                layoutParams.topMargin = Y - _yDelta;
                layoutParams.rightMargin = -250;
                layoutParams.bottomMargin = -250;
                view.setLayoutParams(layoutParams);
                break;
            }
            rleEditImage.invalidate();
            return true;
        }
    });
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#dfdfdf"
android:orientation="vertical" >
<ScrollView
    android:id="@+id/srlCreate"
    android:layout_width="match_parent"
    android:layout_height="fill_parent"
    android:fillViewport="true"
     >
    <RelativeLayout
        android:id="@+id/rleEditImage"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:clickable="true"
        android:focusable="true"
        android:focusableInTouchMode="true" >
    </RelativeLayout>
</ScrollView>


但它不能正常工作。当我删除
ScrollView
时,它将正常工作。如何解决此问题?

使用
绝对布局
而不是
相对布局
AbsoluteLayout
将为
TextView提供更多的自由移动