在android的登录布局背景中插入图像。
问问题
210 次
3 回答
4
在 xml 中:
android:background="@drawable/your_image"
在代码中(setBackgroundDrawable
自 API 16 起已弃用,但仍然有用)
.setBackgroundDrawable(Drawable d);
//or
.setBackgroundResource(int resId);
从 API 16 开始:
.setBackground(Drawable d)
于 2012-09-03T13:48:03.057 回答
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>
于 2012-09-03T13:47:20.747 回答
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>
于 2012-09-03T13:49:22.113 回答