3

有没有办法可以将背景图像添加到 LinearLayout,以便将按钮控件绘制到其上?我试图查看是否有办法将位图作为 LinearLayout 的背景,但找不到方法。

4

2 回答 2

10

您可以使用 xml-Tagandroid:background="@drawable/yourbackground"或通过代码设置它 setBackgroundResource(int)

于 2012-05-28T16:20:40.970 回答
0

使用框架布局并放置图像视图,然后像这样放置线性布局:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scaleType="centerCrop"
    app:srcCompat="@drawable/chrysanthemum"
    android:contentDescription="@string/todo" />

<LinearLayout
    android:id="@+id/linearLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/quan"
        android:layout_width="107dp"
        android:layout_height="56dp"
        android:gravity="center"
        android:text="quantity"
        android:textAllCaps="true"
        android:textColor="#000000" />

</LinearLayout>
</FrameLayout>
于 2020-06-21T12:59:45.190 回答