gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 02:18:04 25 4
gpt4 key购买 nike

您好,我创建了一个带有按钮的 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" />

我可以向下滚动它的长图像,它工作得很好,但在真实设备上,滚动工作正常,按钮在正确的位置,只是背景没有显示?

最佳答案

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

关于java - 如何在android中使用相对布局将背景图像添加到 ScrollView ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28968878/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com