android 从asserts 读取图片做背景

来源:互联网 发布:釜山行 知乎 编辑:程序博客网 时间:2024/05/16 07:16
            InputStream is = getAssets().open("odin/game_splash.png");

            Options opts = new Options();
            opts.inPreferredConfig = Config.RGB_565;
            Bitmap bitmap = BitmapFactory.decodeStream(is, null, opts);
            frameLayout.setBackgroundDrawable(new BitmapDrawable(bitmap));

原创粉丝点击