gpt4 book ai didi

android - 如何在自定义 View 中实现 ScaleGestureDetector

转载 作者:行者123 更新时间:2023-11-30 02:00:01 26 4
gpt4 key购买 nike

我是一个完全的初学者,在调整一些教程代码时遇到了问题。此 Activity (gameScreen) 应包含一个名为 MapView 的自定义 View ,它扩展了 ImageView 并应允许缩放。就目前而言,图像没有按预期填满屏幕(屏幕设置为横向并且在图像的左侧和右侧留下空白)。 View /Activity 似乎也不允许缩放功能起作用。任何帮助表示赞赏!谢谢!

这是 gameScreen.java Activity :

package com.games.michael.treasureseeker;

import android.app.Activity;
import android.os.Bundle;

import java.util.Random;

public class GameScreen extends Activity {

private MapView iv;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.game_screen);
}
}

这是 game_screen.xml 布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"

android:id="@+id/gameBackground">

<TextView
android:id="@+id/directions"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="20sp"
android:textColor="@color/white"
android:background="@color/black"
android:paddingLeft="6dip"
android:paddingRight="6dip"
/>

<com.games.michael.treasureseeker.MapView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/imageView"
android:src="@drawable/pirate_map_2"
android:layout_below="@+id/directions"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" />
</RelativeLayout>

这是自定义 View 类 MapView.java:

package com.games.michael.treasureseeker;

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Matrix;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.ScaleGestureDetector;
import android.widget.ImageView;

public class MapView extends ImageView {
private ScaleGestureDetector SGD;
private float scale = 1.f;
private Matrix matrix = new Matrix();

public MapView(Context context) {
super(context);
SGD = new ScaleGestureDetector(getContext(), new ScaleListener());
}

public MapView(Context context, AttributeSet attrs) {
super(context, attrs);
SGD = new ScaleGestureDetector(getContext(), new ScaleListener());
}

public MapView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
SGD = new ScaleGestureDetector(getContext(), new ScaleListener());
}

@Override
public boolean onTouchEvent(MotionEvent ev) {
SGD.onTouchEvent(ev);
return super.onTouchEvent(ev);
}

@Override
public void onDraw(Canvas canvas) {
super.onDraw(canvas);

canvas.save();
canvas.scale(scale, scale);

MapView.this.setImageResource(R.drawable.pirate_map_2);
canvas.restore();
}

private class ScaleListener extends
ScaleGestureDetector.SimpleOnScaleGestureListener {
@Override
public boolean onScale(ScaleGestureDetector detector) {
scale *= detector.getScaleFactor();
scale = Math.max(0.1f, Math.min(scale, 5.0f));
//matrix.setScale(scale, scale);
//this.setImageMatrix(matrix);
invalidate();
return true;
}
}
}

这是 attrs_map_view.xml:

<resources>
<declare-styleable name="MapView">
<attr name="exampleString" format="string" />
<attr name="exampleDimension" format="dimension" />
<attr name="exampleColor" format="color" />
<attr name="exampleDrawable" format="color|reference" />
</declare-styleable>
</resources>

编辑:

我在 onScale 方法中放置了一个 toast,当我运行代码并使用 onScale 手势时,代码被激活并显示了 toast。出于某种原因,ImageView 只是不会缩放:...

看来问题出在这个项目和网上很多教程的区别上。不同之处在于我想缩放文件图像。我无法在网上找到这方面的示例,也无法理解为什么这行不通,即使经过数小时的尝试也是如此。欢迎提供任何进一步的信息或建议!

编辑:撞!我很绝望,无法解决这个问题!如果有人能提供帮助,那就太好了!

最佳答案

您必须在 onTouchEvent() 中指定特定的操作。为 MotionEvents ACTION_DOWN、ACTION_MOVE、ACTION_UP、ACTION_POINTER_DOWN、ACTION_POINTER_UP 编写一个 switch case。这将允许缩放或拖动。请通过谷歌浏览此文档 Responding to Touch Events .

希望这有帮助:)

关于android - 如何在自定义 View 中实现 ScaleGestureDetector,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31636512/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com