Full screen background image in an activity

2019-01-05 06:50发布

I see many applications that use a full-screen image as background. This is an example:

Full screen background image

I want to use this in a project, the best way I've found so far to do this is to use an image with a large size, put it in a ImageView and use android: adjustViewBounds="true" to adjust the margins

The problem is that if a screen with a very high resolution, the image falls short.

Another option I thought of is to use the image in a FrameLayout, with match_parent in width and height as background... this stretches the image, but I think the result is not very good.

How would you do it?

13条回答
Luminary・发光体
2楼-- · 2019-01-05 07:51

use this

android:background="@drawable/your_image

in your activity very first linear or relative layout.

查看更多
登录 后发表回答