Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
903 views
in Technique[技术] by (71.8m points)

performance - Resize the images according screen resolution Android

I have a background image in body. What I want to achieve is that:

1) - Calculate the visitor screen resolution.
2) - based on that resolution I want to resize my background image.

I know get the screen resolution as a

Display display = getWindowManager().getDefaultDisplay();
width_screen = display.getWidth();
height_screen = display.getHeight();

But I don't know how to resize the images according screen resolution of user.

Can anyone help? Thanks..

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Put a ImageView in your layout file and set

    android:layout_width="match_parent"
    android:layout_height="match_parent"

If you want to keep the aspect use:

    android:scaleType="centerInside"

If you dont care about the aspect ratio use:

    android:scaleType="fitXY"

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...