如何将TransitionDrawable转换为BitmapDrawable?

时间:2018-11-18 15:46:32

标签: android android-glide android-photoview

我在我的android项目中使用了PhotoViewGlide库。 该应用程序正在从URL提取图像并将其显示在GridView中。当用户单击图像时,图像将被加载到同一活动片段内的photoview中。

现在我想将该图像设置为墙纸,因此我在按钮单击侦听器中编写了以下内容:

WallpaperManager wallpaperManager = WallpaperManager.getInstance(getActivity());
bitmap = ((BitmapDrawable) photoView.getDrawable()).getBitmap();
try{
    wallpaperManager.setBitmap(bitmap);
    Toast.makeText(getActivity(), "wallpaper set", Toast.LENGTH_SHORT).show();
}catch(IOException e){
     e.printStackTrace();
}

错误在以下行:

bitmap = ((BitmapDrawable) photoView.getDrawable()).getBitmap();

错误是:无法将TransitionDrawable转换为BitmapDrawable

如何投射? 要么 还有其他设置墙纸的方法吗?

1 个答案:

答案 0 :(得分:0)

    ImageVIEW.setImageBitmap( getUri( Uri.parse( blob ) ) );


private Bitmap getUri(Uri uri) {
    ParcelFileDescriptor parcelFileDescriptor = null;
    try {
        parcelFileDescriptor = activity.getContentResolver().openFileDescriptor( uri, "r" );
        FileDescriptor fileDescriptor = parcelFileDescriptor.getFileDescriptor();
        Bitmap image = BitmapFactory.decodeFileDescriptor( fileDescriptor );
        parcelFileDescriptor.close();
        return image;
    } catch (Exception e) {
        Log.e( TAG, "Failed to load image.", e );
        return null;
    } finally {
        try {
            if (parcelFileDescriptor != null) {
                parcelFileDescriptor.close();
            }
        } catch (IOException e) {
            e.printStackTrace();
            Log.e( TAG, "Error closing ParcelFile Descriptor" );
        }
    }

all details in this link