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 に答える