在Android TouchImageView中自动滚动到左上角

时间:2015-06-12 09:40:55

标签: android touchimageview

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

我尝试了imgView.setScrollPosition(0,0),但没有任何结果。 我也尝试将scaletype设置为“matrix”,但这会缩小图像,同时我希望图像以原始大小显示。 TouchImageView不支持Scaletypes 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
}

1 个答案:

答案 0 :(得分:0)

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

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());
    }
}