繁体   English   中英

活动中的全屏背景图片

[英]Full screen background image in an activity

我看到许多使用全屏图像作为背景的应用程序。 这是一个例子:

全屏背景图片

我想在一个项目中使用它,到目前为止我发现最好的方法是使用大尺寸的图像,将它放在ImageView并使用android: adjustViewBounds="true"来调整边距

问题是,如果屏幕的分辨率非常高,则图像会不足。

我想到的另一个选择是在FrameLayout使用图像,以widthheight match_parent作为背景......这会拉伸图像,但我认为结果不是很好。

你会怎么做?

有几种方法可以做到。

选项1:

为不同的 dpi 创建不同的完美图像并将它们放在相关的可绘制文件夹中。 然后设置

android:background="@drawable/your_image"

选项 2:

添加单个大图像。 使用框架布局。 作为第一个孩子添加ImageView 在您的 ImageView 中设置以下内容。

android:src="@drawable/your_image"
android:scaleType = "centerCrop"

另一种选择是在可绘制对象中添加单个图像(不一定很大)(让我们将其命名为 backgroung.jpg),在没有“src”属性的情况下在 xml 的根目录创建一个 ImageView iv_background。 然后在对应activity的onCreate方法中:

    /* create a full screen window */
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
            WindowManager.LayoutParams.FLAG_FULLSCREEN);
    setContentView(R.layout.your_activity);

    /* adapt the image to the size of the display */
    Display display = getWindowManager().getDefaultDisplay();
    Point size = new Point();
    display.getSize(size);
    Bitmap bmp = Bitmap.createScaledBitmap(BitmapFactory.decodeResource(
      getResources(),R.drawable.background),size.x,size.y,true);

    /* fill the background ImageView with the resized image */
    ImageView iv_background = (ImageView) findViewById(R.id.iv_background);
    iv_background.setImageBitmap(bmp);

没有裁剪,没有许多不同大小的图像。 希望能帮助到你!

您应该将各种尺寸的图像放入以下文件夹中

有关更多详细信息,请访问此链接

  • 低密度脂蛋白

  • MDPI

  • 高清晰度电视

  • xhdpi

  • xxhdpi

并使用 RelativeLayout 或 LinearLayout 背景而不是使用 ImageView 作为以下示例

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:orientation="vertical"
 android:background="@drawable/your_image">

</RelativeLayout>

这个帖子发布已经有一段时间了,但这对我有帮助。

您可以使用嵌套布局。 从一个RelativeLayout 开始,然后把你的ImageView 放在里面。

将高度和宽度设置为 match_parent 以填充屏幕。

设置 scaleType="centreCrop" 使图像适合屏幕并且不会拉伸。

然后您可以像往常一样放入任何其他布局,例如下面的 LinearLayout。

您可以使用 android:alpha 来设置图像的透明度。

<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

  <ImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scaleType="centerCrop"
    android:src="@drawable/image"
    android:alpha="0.6"/>

  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">

      <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello"/>

      <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="There"/>

   </LinearLayout>
</RelativeLayout>

关于什么

android:background="@drawable/your_image"

在您的活动的主要布局?

通过这种方式,您还可以通过将它们放置在适当的res/drawable-**dpi文件夹中来为不同的屏幕密度提供不同的图像。

用这个

android:background="@drawable/your_image"

在您的活动中,第一个线性或相对布局。

如果您希望图像在透明的操作栏后面显示,请将以下内容放入主题的样式定义中:

<item name="android:windowActionBarOverlay">true</item>

享受!

与 NoToast 的答案一致,您需要在 res/drawable-ldpi、mdpi、hdpi、x-hdpi(对于超大屏幕)中有多个版本的“your_image”,删除 match_parent并保留android: adjustViewBounds="真的”

添加android:background="@drawable/your_image"在您的 Relativelayout/Linearlayout Worked 中。

如果您将 bg.png 作为背景图片,那么只需:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/bg"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="@string/hello_world"/>
</RelativeLayout>

在职的。 你应该试试这个:

android:src="@drawable/img"

three step for put background

1)你应该选择你喜欢的图片。 例如:在此处输入图像描述

2)然后将这张图片复制到drawable中。 警告:您应该选择名称图片的缩写类型。

在此处输入图片说明

3)你去页面xml意图并写:

android:background="id picture" 例如我的图片ID是@drawable/download。

在此处输入图片说明

结束。

最简单的方法:

第 1 步:打开 AndroidManifest.xml 文件

你可以在这里看到文件!

第 2 步:找到android:theme="@style/AppTheme" >

第三步:改为android:theme="@style/Theme.AppCompat.NoActionBar" >

第 4 步:然后添加 ImageView & Image

第 4 步:就是这样!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM