簡體   English   中英

如何修改此代碼以在 android 中將圖像拉伸到全屏

[英]how to modify this code to stretch the image to full screen in android

我得到了一些代碼,它根據圖像的大小繪制圖像。 但我想將圖像拉伸到全屏。 我嘗試了很多,但沒有任何幫助。 任何人都可以為我做這件事嗎? 提前致謝

public Bitmap getBitmap(int width, int height, int index) {
        Bitmap b = Bitmap.createBitmap(width, height,
                Bitmap.Config.ARGB_8888);
        b.eraseColor(0xF000FFFF);
        Canvas c = new Canvas(b);
        Drawable d = getResources().getDrawable(mBitmapIds[index]);

        int margin = 1;
        int border =1 ;
        Rect r = new Rect(margin, margin, width - margin, height - margin);

        int imageWidth = r.width() - (border * 2);
        int imageHeight = imageWidth * d.getIntrinsicHeight()
                / d.getIntrinsicWidth();
        if (imageHeight > r.height() - (border * 2)) {
            imageHeight = r.height() - (border * 2);
            imageWidth = imageHeight * d.getIntrinsicWidth()
                    / d.getIntrinsicHeight();
        }

        r.left += ((r.width() - imageWidth) / 2) - border;
        r.right = r.left + imageWidth + border + border;
        r.top += ((r.height() - imageHeight) / 2) - border;
        r.bottom = r.top + imageHeight + border + border;

        Paint p = new Paint(); 
        p.setColor(0xFFC0C0C0);
        c.drawRect(r, p);
        r.left += border;
        r.right -= border;
        r.top += border;
        r.bottom -= border;

        d.setBounds(r);
        d.draw(c);
        return b;
    }

看看這個........onClick 方法的縮略圖,你可以在全屏模式下啟動一個新的活動:

getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);

並將圖像 uri 或指示圖像源的內容傳遞給新活動:

Intent intent = new Intent(YouActivity.this, FullImage.class);  
intent.putExtra("imageUri", R.drawable.yourImage); // or the path to your image. 

在 FullImage 活動中 class

ImageView icon = (ImageView) findViewById(R.id.myImage);  
BitmapFactory.Options options = new BitmapFactory.Options(); 
options.inTempStorage = new byte[3*1024];  
Bitmap ops = BitmapFactory.decodeFile(path, options); // instead path you can get an image from previous activity.   
icon.setImageBitmap(ops); 

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM