如何在后台显示中设置图像?

时间:2011-10-16 14:44:04

标签: android image

我想在App的背景中设置图像? 如何设置?

1 个答案:

答案 0 :(得分:3)

将您的背景PNG放在'drawable'资源文件夹中(我们假设它在我们的片段中是mybackground.png)。

如果使用XML布局,请将以下内容添加到顶级容器元素中:

android:background="@drawable/mybackground"

例如:

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

或者,如果您动态构建视图,请在Activity onCreate方法中执行以下操作:

view.setBackgroundDrawable(R.drawable.mybackground)