我想创建一个带有按钮和文本的线性布局,但我需要一个背景ImageView,所以我可以在背景中更改图像。顶部的控件将是半透明的,因此下面的图像显示出来。如何使用Android SDK 2.3或更高版本
谢谢
答案 0 :(得分:2)
然后,
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/lila_background"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp"
android:background="@drawable/img_background"
android:orientation="vertical"
>
当你需要改变时,我认为它就像......
((LinearLayout)findViewById(R.id.lila_background)).setBackgroundDrawableResource(R.drawable.image_name);
答案 1 :(得分:0)
你只需要在你的布局xml中添加android:background =“@ drawable / addon”