0

我想创建一个带有按钮和文本的线性布局,但我需要一个背景 ImageView 以便我可以更改背景中的图像。顶部的控件将是半透明的,因此下面的图像可以显示出来。如何使用 Android SDK 2.3 或更高版本

谢谢

4

2 回答 2

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);
于 2012-04-27T07:32:33.603 回答
0

您好,只需将 android:background="@drawable/addon" 添加到您的布局 xml

于 2012-04-27T07:44:33.500 回答