在android中如何使LinearLayout中的TextView拖动顺畅?

时间:2013-02-04 09:40:36

标签: android drag-and-drop draggable android-linearlayout textview

我遇到的情况无法解决,希望我会得到一些建议。

情况很简单:我有一个LinearLayout,其中我有一个包含多行文本的TextView。用户可以拖动TextView,直到找到他喜欢的位置。真正重要的是TextView可以部分地脱离LinearLayout(它会显示为切割)。

以下是一些代码示例:

 <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="top|center_horizontal"
        android:clipChildren="false"
        android:gravity="center_horizontal|center_vertical"
        android:orientation="vertical" >

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:textColor="@color/text_color"
            android:textSize="16sp" />
    </LinearLayout>

正如您所看到的,LinearLayout具有clipChildren = false以允许截断文本。 对于textview我设置了一个触摸监听器

txt.setOnTouchListener(new View.OnTouchListener() {
            int initialX = 0;
            int initialY = 0;

            @Override
            public boolean onTouch(View v, MotionEvent event) {
                switch (event.getActionMasked()) {
                case MotionEvent.ACTION_DOWN:
                    initialX = (int) event.getX();
                    initialY = (int) event.getY();
                    break;
                case MotionEvent.ACTION_MOVE:
                            int currentX = (int) event.getX();
                            int currentY = (int) event.getY();
                            LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) txt.getLayoutParams();

                            int left = lp.leftMargin + (currentX - initialX);
                            int top = lp.topMargin + (currentY - initialY);
                            int right = lp.rightMargin - (currentX - initialX);
                            int bottom = lp.bottomMargin - (currentY - initialY);

                            lp.rightMargin = right;
                            lp.leftMargin = left;
                            lp.bottomMargin = bottom;
                            lp.topMargin = top;

                            txt.setLayoutParams(lp);
                    break;
                default:
                    break;
                }
                return true;
            }
        });

这是我的问题:正如您所看到的,我已经设置了所有布局参数(右,左,下,上边距)。那是为什么?

1)如果我只使用left / top,则拖动是平滑的,但是文本被包裹在右边框而不是被切割。可能由于正确的0保证金值。

2)如果我使用所有边距,文本会根据需要剪切,但移动不平滑,只是跳了几个像素。

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:2)

好。这很奇怪。通过将TextView插入另一个与初始大小相同的LinearLayout中,使一切顺利。我不明白为什么。