我创建了一个图片视图,并使用OnTouchListener
移动了它。如何限制移动到屏幕边界?
答案 0 :(得分:1)
我根据我在此处找到的代码做了类似的事情:DragView Example
它基于谷歌的启动码。为了保持屏幕上的视图,我修改了onTouchEvent方法以保持屏幕上的视图。
public boolean onTouchEvent(MotionEvent ev) {
if (!mDragging) {
return false;
}
final int action = ev.getAction();
final int screenX = clamp((int)ev.getRawX(), 0, mDisplayMetrics.widthPixels);
final int screenY = clamp((int)ev.getRawY(), 0, mDisplayMetrics.heightPixels);
//**ADDED to keep view entirely on screen
final int[] parentpos = {-1,-1};
((View) mDragSource).getLocationOnScreen(parentpos);
int minScreenX = parentpos[0] + (int)mTouchOffsetX;
int minScreenY = parentpos[1] + (int)mTouchOffsetY;
int maxScreenX = minScreenX + ((View) mDragSource).getWidth() - mDragView.getWidth();
int maxScreenY = minScreenY + ((View) mDragSource).getHeight() - mDragView.getHeight();
//end ADDED
在这里
case MotionEvent.ACTION_MOVE:
// Update the drag view. Don't use the clamped pos here so the dragging looks
// like it goes off screen a little, intead of bumping up against the edge.
// **CHANGED to keep view entirely on screen
mDragView.move(clamp(screenX,minScreenX,maxScreenX),
clamp(screenY,minScreenY,maxScreenY));
// end CHANGED
在这里
case MotionEvent.ACTION_UP:
if (mDragging) {
// **CHANGED to keep view entirely on screen
drop(clamp(screenX,minScreenX,maxScreenX),
clamp(screenY,minScreenY,maxScreenY));
//end CHANGED
}
endDrag();
答案 1 :(得分:1)
如果要在页面中显示图像,请使用以下代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="2px"
android:src="pathOfImage" />
</LinearLayout>
或者您可以使用以下代码设置高度和宽度:
Display display = getWindowManager().getDefaultDisplay();
width = display.getWidth();
height = display.getHeight();
ImageView imageView=(ImageView) findViewById(R.id.image);
imageView.setLayoutParams(new LayoutParams(width, height));
答案 2 :(得分:0)
你可以计算你的屏幕尺寸,并且可以在屏幕内修复图像移动的一些方式
Display display = getWindowManager().getDefaultDisplay();
width = display.getWidth();
height = display.getHeight();
答案 3 :(得分:0)
您不希望OnTouchListener
,您需要OnDragListener
。查找不同的DragEvent
操作类型,以获取有关View所在位置的信息。从那里开始,只要您知道View
的尺寸,就可以禁止它移出屏幕。