gpt4 book ai didi

android - 如何像instagram一样实现长按图片预览

转载 作者:搜寻专家 更新时间:2023-11-01 08:35:59 26 4
gpt4 key购买 nike

我正在尝试像在 Instagram 中那样实现长按图像预览。我的应用程序就像一个包含图像的目录,当我长按任何图像时,它的预览应该出现并在发布后关闭,就像在 Instagram 中一样。

最佳答案

好吧,我正在对图像使用回收 View 。

为了显示图像,我使用调用此方法的长按监听器:

public void publicationQuickView(Post post){
View view = getLayoutInflater().inflate( R.layout.quick_view, null);

ImageView postImage = (ImageView) view.findViewById(R.id.ivFeedCenter);
ImageView profileImage = (ImageView) view.findViewById(R.id.ivUserProfile);
TextView tvUsername = (TextView) view.findViewById(R.id.txtUsername);
tvUsername.setText(post.user.name);

Picasso.with(this).load(post.picture).priority(Picasso.Priority.HIGH).noPlaceholder().into(postImage);
Picasso.with(this).load(post.user.picture).noPlaceholder().into(profileImage);

builder = new Dialog(this);
builder.requestWindowFeature(Window.FEATURE_NO_TITLE);
builder.getWindow().setBackgroundDrawable(
new ColorDrawable(Color.TRANSPARENT));
builder.setContentView(view);
builder.show();
}

我膨胀布局并注入(inject)对话框。

要关闭对话框,我正在使用 RecyclerView.OnItemTouchListener(),如下所示:

rvUserProfile.addOnItemTouchListener(new RecyclerView.OnItemTouchListener() {
@Override
public boolean onInterceptTouchEvent(RecyclerView rv, MotionEvent e) {
if(e.getAction() == MotionEvent.ACTION_UP)
hideQuickView();
return false;
}

@Override
public void onTouchEvent(RecyclerView rv, MotionEvent event) {
}

@Override
public void onRequestDisallowInterceptTouchEvent(boolean disallowIntercept) {
}});

最后:

public void hideQuickView(){
if(builder != null) builder.dismiss();
}

关于android - 如何像instagram一样实现长按图片预览,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36614449/

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