如何在ScrollView android上应用背景图像

时间:2015-05-07 06:22:45

标签: android android-layout

我想在ScrollView下的Relativelayout上应用背景图片。 图像出现在XML视图上但未出现在实际设备上。

我在Ralativelayout上添加了ImageView

  1.     

        >
    
        <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="match_parent" android:layout_height="match_parent"
    
            android:id="@+id/parentView"
            >
     <ImageView
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:src="@drawable/cloudbg"
                />
    
            <LinearLayout
                android:layout_width="match_parent"
                android:orientation="horizontal"
                android:id="@+id/vo"
                android:layout_below="@id/relativeLayout"
                android:layout_marginTop="20dp"
                android:layout_marginLeft="20dp"
                android:layout_height="wrap_content">
    
                <TextView
                    android:layout_width="100dp"
                    android:layout_height="wrap_content"
                    android:text="XYZ"
                    />
    
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_marginLeft="25dp"
                    android:layout_height="wrap_content"
                    android:id="@+id/textvo"
                    android:text="Voter Number"
                    />
    
            </LinearLayout>
    
    
           </RelativeLayout>
    </ScrollView>
    
  2. 由于

3 个答案:

答案 0 :(得分:3)

可以这样试试:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/cloudbg">

<ScrollView
    android:id="@+id/scrollView1"
    android:layout_width="match_parent"
    android:layout_height="fill_parent" >

 <LinearLayout
        android:layout_width="match_parent"
        android:orientation="horizontal"
        android:id="@+id/vo"
        android:layout_below="@id/relativeLayout"
        android:layout_marginTop="20dp"
        android:layout_marginLeft="20dp"
        android:layout_height="wrap_content">

        <TextView
            android:layout_width="100dp"
            android:layout_height="wrap_content"
            android:text="XYZ"
            />

        <TextView
            android:layout_width="wrap_content"
            android:layout_marginLeft="25dp"
            android:layout_height="wrap_content"
            android:id="@+id/textvo"
            android:text="Voter Number"
            />

    </LinearLayout>
 </ScrollView>

enter image description here

答案 1 :(得分:0)

在相对或线性布局标记中使用android:background="@drawable/background_image"属性。

答案 2 :(得分:0)

Set background for scrollview
<ScrollView
    android:id="@+id/scrollView1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/ic_launcher" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >
    </LinearLayout>
</ScrollView>