我正在使用以下配置将图像正确放置在滚动视图中。
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbars="vertical" >
<ImageView
android:id="@+id/textNimbo"
android:layout_width="match_parent"
android:layout_height="2492dp"
android:layout_alignParentRight="true"
android:src="@drawable/inicio"
android:adjustViewBounds="true" />
</ScrollView>
但是,我还需要在 scrollView 内和 ImageView 下方设置一个按钮。我在 scrollView 中尝试了相对和线性布局,但没有成功,按钮不可见或图像不适合 scrollView。有什么推荐的配置吗?谢谢你。