我有我不能修复的情况,希望我会得到一些来自你们建议。
这种情况很简单:我有一个的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 =假,让文字截止。 对于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)如果我只用左/上方的阻力是光滑的足够多,但text获取的包裹在右边框的不是得到削减。 可能是由于右0边距值。
2)如果我使用所有的利润,文本被削减,因为我想要的,但运动不顺畅,它只是跳绕了几个像素。
我怎样才能解决这个问题 ?