从 ImageView 获取图像

Posted

技术标签:

【中文标题】从 ImageView 获取图像【英文标题】:Getting Image from ImageView 【发布时间】:2012-02-21 00:16:01 【问题描述】:

我有一个显示图像数组的画廊,当单击它们时,它们会显示在图像视图中。我希望能够共享当前显示在意图选择器中的图像。我不知道如何选择当前图像。

图库代码:

public View getView(int position, View convertView, ViewGroup parent) 
        ImageView imageView = new ImageView(mContext);

        imageView.setImageResource(mImageIds[position]);
        imageView.setLayoutParams(new Gallery.LayoutParams(150, 120));
        imageView.setScaleType(ImageView.ScaleType.FIT_XY);
        imageView.setBackgroundResource(mGalleryItemBackground);

        return imageView;
    

意图选择器代码:

Intent share = new Intent(Intent.ACTION_SEND);
            share.setType("image/png");

            share.putExtra(Intent.EXTRA_STREAM,
                    Uri.parse("android.resource://com.appinfluence.fanapp.v1/drawable/" + Integer.toString(R.drawable.alright)));

            startActivity(Intent.createChooser(share, "Share Image"));

它说 R.drawable.alright 我需要它以某种方式成为当前图像的变量。有什么想法吗?

【问题讨论】:

【参考方案1】:

要获取当前选定的视图,请使用

Gallery.getSelectedView(); 

以及从 imageView 获取 Drawable 使用:

ImageVIew.getDrawable()

如果您想从可绘制对象中获取输入流,请使用以下内容:

BitmapDrawable bitmapDrawable = ((BitmapDrawable) drawable);
Bitmap bitmap = bitmapDrawable .getBitmap();
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, stream);
byte[] imageInByte = stream.toByteArray();
ByteArrayInputStream bis = new ByteArrayInputStream(imageInByte);

【讨论】:

那么我如何将当前的imageview图像转换成一个字符串。例如我上面的代码中的 R.drawable.alright。使用 imageview.getdrawable.tostring() 我得到 android.drawable.BitmapDrawable@414743f8 虽然我没用过,但是试试用:resources.getResourcePackageName(resId) + '/' + resources.getResourceTypeName(resId) + '/' + resources.getResourceEntryName(resId); 我在哪里可以找到这个程序的可绘制变量【参考方案2】:
    l.setOnItemClickListener(new AdapterView.OnItemClickListener() 
        @Override
        public void onItemClick(AdapterView<?> parent, View view, int position, long id) 
            TextView textView=(TextView)view.findViewById(R.id.textView);
            ImageView imageView=(ImageView)view.findViewById(R.id.imageView);
            String textViewString=textView.getText().toString();
            Bitmap image=((BitmapDrawable)imageView.getDrawable()).getBitmap();

            DialogClass dialogClass=new DialogClass(MainActivity.this,image,textViewString);
            dialogClass.show();
        
    );

【讨论】:

【参考方案3】:

我的最佳功能

public class MainActivity extends Activity 

    private ImageView imgView,bitmap;
    @Override
    protected void onCreate(Bundle savedInstanceState) 
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        imgView=(ImageView) findViewById(R.id.imgView);
        bitmap=(ImageView) findViewById(R.id.bitmap);

        //set view to bitmap image
        bitmap.setImageBitmap(convertImageViewToBitmap(imgView));
    

    //function to convert imageView to Bitmap

    private Bitmap convertImageViewToBitmap(ImageView v)

        Bitmap bm=((BitmapDrawable)v.getDrawable()).getBitmap();

        return bm;
    


【讨论】:

以上是关于从 ImageView 获取图像的主要内容,如果未能解决你的问题,请参考以下文章

从ImageView获取图像

从图库中获取图像并在 ImageView 中显示

使用 Alamofireimage 从服务器获取图像后,Imageview 未更新

Android imageview从缩放图像中获取像素颜色

如何从远程源(url)获取图像并在ImageView中显示?

获取图像后从其 imageView 刷新 UITableViewCell 布局