0

我在我的应用程序中使用了TouchImageView ,其中的图像大于屏幕尺寸。当我启动包含我的 TouchImageView 的活动时,它当前会自动在屏幕中间显示我的图像中心。我必须手动(使用拖动手势)使左上角可见。但是,我希望图像的左上角默认显示在屏幕的左上角。

我尝试了 imgView.setScrollPosition(0,0),但没有任何结果。我还尝试将 scaletype 设置为“matrix”,但这会缩小图像,而我希望图像以原始大小显示。TouchImageView 不支持比例类型 fitStart 和 fitEnd。

如何滚动到 TouchImageView 的左上角?

这是我的 XML:

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

    <com.frankd.wttv.TouchImageView
        android:id="@+id/imageView"
        android:layout_width = "wrap_content"
        android:layout_height ="wrap_content"
        android:scaleType="matrix"/>

</LinearLayout>

这是我打开布局和设置图像的方式。

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

    //set timetable image
    TouchImageView imgView = (TouchImageView)findViewById(R.id.imageView);
    imgView.setImageResource(R.drawable.myImage);
    //TODO: scroll to top left corner of image
}
4

1 回答 1

0

问题的原因是 TouchImageView 中的 scrollToPosition(x,y) 不使用 x 和 y 像素作为输入,而是使用 0 到 1 之间的数字来反映图像大小的比例。

此外,scrollToPosition(x,y) 将图像的一个点设置在 TouchImageView 的中心。因此,如果您在 TouchImageView 上调用 scrollToPosition(0.5,0.5),则图像的中心将显示在 TouchImageView 的中心。我们需要计算图像的哪个点需要放置在 TouchImageView 的中心才能使其很好地对齐。

我在 TouchImageView.java 中创建了函数 scrollToTopLeft(),只有在 TouchImageView.java 文件中的 onMeasure() 末尾调用它时才有效。如果您之前调用它,getWidth() 和 getHeight() 将返回 0,因为视图尚未调整大小。

public void scrollToTopLeft() {
    try {
        float x, y, viewWidth, viewHeight, viewCenterX, viewCenterY, imageWidth, imageHeight;

        //these calls will only work if called after (or at the end of) onMeasure()
        viewWidth = this.getWidth();
        viewHeight = this.getHeight();

        // get center of view
        viewCenterX = viewWidth / 2;
        viewCenterY = viewHeight / 2;

        // get image height and width
        imageWidth = getImageWidth();
        imageHeight = getImageHeight();

        //calculate the x and y pixels that need to be displayed in at the center of the view
        x = viewWidth / imageWidth * viewCenterX;
        y = viewHeight / imageHeight * viewCenterY;

        //calculate the value of the x and y pixels relative to the image
        x = x / imageWidth;
        y = y / imageHeight;

        setScrollPosition(x, y);

    } catch (Exception E) {
        Log.v(TAG, E.toString());
    }
}
于 2015-06-15T19:42:33.177 回答