如何在布局背景中插入图像?

时间:2012-09-03 13:44:58

标签: android

在Android中的登录布局背景中插入图像。

3 个答案:

答案 0 :(得分:4)

在xml中:

android:background="@drawable/your_image"

在代码中(setBackgroundDrawable自API 16以来已弃用,但仍然有用)

.setBackgroundDrawable(Drawable d);
//or
.setBackgroundResource(int resId);

自API 16起:

.setBackground(Drawable d)

答案 1 :(得分:2)

喜欢这个 -

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

答案 2 :(得分:1)

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