我使用Glide库将图像加载到imageView中,但我不知道如何使图像捏合到可缩放

2022-09-03 18:24:53
public class MainActivity extends AppCompatActivity {

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


    //Variables
    ImageView imageView;
    imageView = (ImageView) findViewById(R.id.imageView);

    //Loading into ImageView
    Glide.with(this)
            .load("http://vrijeme.hr/bradar.gif")
            .into(imageView);
}

我也尝试使用毕加索,然后将其与PhotoView库连接,但它没有做任何事情,当我尝试捏合缩放时,它根本没有缩放,这是该代码的一部分:

ImageView imageView;
PhotoViewAttacher photoView;

imageView = (ImageView) findViewById(R.id.imageView);
photoView = new PhotoViewAttacher(imageView);
Picasso.with(this)
       .load("link")
       .resize(1080,80)
       .into(imageView);

答案 1

这里叫这个库是相当流行的。
https://github.com/chrisbanes/PhotoViewPhotoView

有13,500多颗星,30多个贡献者支持它,这么多人使用它,以及集成到一个项目中是多么容易,它几乎感觉像一个标准。

它也与^.^兼容。Glide


安装Chrisbanes的官方文档))

在根文件(不是模块文件)中添加以下内容:build.gradlebuild.gradle

allprojects {
    repositories {
        maven { url "https://jitpack.io" }
    }
}

然后,将库添加到模块build.gradle

dependencies {
    implementation 'com.github.chrisbanes:PhotoView:latest.release.here'
}

在撰写本文的那个时候,是 .latest.release.here2.1.4


用法Chrisbanes的官方文档))

提供了一个示例,其中显示了如何以更高级的方式使用库,但为了完整起见,以下是使PhotoView正常工作所需的所有内容:

<com.github.chrisbanes.photoview.PhotoView
    android:id="@+id/photo_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>
PhotoView photoView = (PhotoView) findViewById(R.id.photo_view);
photoView.setImageResource(R.drawable.image);

就是这样!


滑动一起使用

什么都没有改变!!

PhotoView photoView = (PhotoView) findViewById(R.id.photo_view);
Glide.with(this).load(imageUrl).into(photoView);

答案 2

例如,您可以使用此库。https://github.com/MikeOrtiz/TouchImageView

将图像加载到此小部件中,而不是图像视图

示例用法:

private TouchImageView mContentView;
private private SimpleTarget target;

mContentView = (TouchImageView) findViewById(R.id.fullscreen_content);

target = new SimpleTarget<Bitmap>() {
        @Override
   public void onResourceReady(Bitmap bitmap, GlideAnimation glideAnimation) 
{
            // do something with the bitmap
            // for demonstration purposes, let's just set it to an ImageView
            mContentView.setImageBitmap(bitmap);
        }
    };



    Glide.with(this) // could be an issue!
            .load( imagePath )
            .asBitmap()
            .into(target);

请注意,我也首先使用SimpleTarget,这是使用Glide和捏合来缩放大图像效果的好习惯。

布局将如下所示:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.FullscreenActivity">


<com.yourPath.TouchImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/fullscreen_content"/>

</FrameLayout>

此外,有时在此设置后加载映像时会出现问题。对我来说,工作是这样的。我重写了TouchImageView类中的方法:

@Override
public void setImageBitmap(Bitmap bm) {
    imageRenderedAtLeastOnce = false;
    super.setImageBitmap(bm);
    savePreviousImageValues();
    fitImageToView();
}

推荐