如何在android中使用相对布局将背景图像添加到scrollview?

时间:2015-03-10 16:20:31

标签: java android android-studio imageview scrollview

您已经创建了一个带有按钮的scrollview应用程序,我添加了一个背景图片,但背景在模拟器上工作但不在真实设备上,任何帮助都将受到赞赏,我使用imageview作为背景!

<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
 >
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:isScrollContainer="true"
    android:orientation="vertical"
    >

<ImageView
    android:id="@+id/imageView2"
    android:layout_width="fill_parent"
    android:layout_height="3500dp"
    android:adjustViewBounds="true"
    android:background="@drawable/iphonebg"
    android:clickable="false"
    android:layout_alignParentTop="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"

    android:contentDescription="@string/background_desc"
    >
</ImageView>

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/callButton"
        android:background="@drawable/callnow1"
        android:layout_marginTop="261dp"
        android:onClick="callButtonClicked"
        android:layout_alignParentTop="true"
        android:layout_alignRight="@+id/orderButton"
        android:layout_alignEnd="@+id/orderButton" />

我可以向下滚动它的长图像并且它可以完美地工作但是在真实设备上滚动工作并且按钮位于正确的位置,只是背景没有显示?

1 个答案:

答案 0 :(得分:1)

您应该将背景图像设置为@drawable XML资源。这样,您可以使用android:background="@drawable/..."将其设置为背景,以用于您希望它作为背景的任何布局(ScrollView或RelativeLayout)。