gpt4 book ai didi

java - ScrollView 中的静态图像

转载 作者:行者123 更新时间:2023-11-30 03:22:48 24 4
gpt4 key购买 nike

我的 Intent 是在左侧或右侧放置一个图像, ScrollView 占据剩余空间。我希望图像在文本滚动时保持静止。老实说,我真的不知道从哪里开始——我四处搜索,但似乎没有人问或回答我到底想做什么,而且我尝试对他们的代码进行的任何操作都失败了。方向强制为横向。

我试过这个:

home_scroll.setLayoutParams(new ViewGroup.LayoutParams(480, 800));
home_scroll.addView(home_linear, new LayoutParams(LayoutParams.FILL_PARENT,
LayoutParams.FILL_PARENT));

但是 textview 和图像的组合阻止了它的工作。

谢谢!

最佳答案

您可以使用此布局。图像在左侧, ScrollView 占用剩余空间。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<ImageView
android:id="@+id/image1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true" />

<ScrollView
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentRight="true"
android:layout_toRightOf="@+id/image1" >
</ScrollView>


</RelativeLayout>

关于java - ScrollView 中的静态图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18801433/

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