Android get Bitmap or sound from assets

Android get Bitmap or sound from assets - Hello friend inabnomaniiyaha, In the article that you read this time with the title Android get Bitmap or sound from assets, we have prepared this article well for you to read and take information in it. hopefully the contents of the post Artikel Android,what we write you can understand. Alright, happy reading.

Judul : Android get Bitmap or sound from assets
link : Android get Bitmap or sound from assets

Baca juga


Android get Bitmap or sound from assets

Android get Bitmap or sound from assets

I need to get Bitmap and sound from assets. I try to do like this:

BitmapFactory.decodeFile("file:///android_asset/Files/Numbers/l1.png");

getBitmapFromAsset("Files/Numbers/l1.png");

    private Bitmap getBitmapFromAsset(String strName) {

        AssetManager assetManager = getAssets();

        InputStream istr = null;

        try {

            istr = assetManager.open(strName);

        } catch (IOException e) {

            e.printStackTrace();

        }

        Bitmap bitmap = BitmapFactory.decodeStream(istr);

        return bitmap;

    }

But I get just free space, not image.

Answers

public static Bitmap getBitmapFromAsset(Context context, String filePath) {

    AssetManager assetManager = context.getAssets();


    InputStream istr;

    Bitmap bitmap = null;

    try {

        istr = assetManager.open(filePath);

        bitmap = BitmapFactory.decodeStream(istr);

    } catch (IOException e) {

        // handle exception

    }


    return bitmap;

}



That's the articleAndroid get Bitmap or sound from assets

That's it for the article Android get Bitmap or sound from assets this time, hopefully can be useful for all of you. well, see you in another article post.

You are now reading the articleAndroid get Bitmap or sound from assets with link addresshttps://inabnonapudyawanabing.blogspot.com/2020/11/android-get-bitmap-or-sound-from-assets.html

0 Response to "Android get Bitmap or sound from assets"

Post a Comment

Tips Tricks for Android Phone

Tips & Tricks for Android Phone is a free android app and Collection of Tips and Tricks related to using your android mobile device lik...