ScrollView在另一个布局Android之上
作者:互联网
在下面的代码中,我有两个主要容器,一个RelativeLayout和一个ScrollView.我需要将RelativeLayout固定在最上面,并在下面使ScrollView和Images滚动.我有以下两个问题:
>尽管我的ScrollView是可滚动的,但它位于RelativeLayout的顶部. !重要
>垂直LinearLayout中存在的我的图像视图为缩略图大小.如果我有15-20张图像,则它们会占用很多垂直空间.如何根据屏幕尺寸使图像适合一行中的最大值,然后转到下一行?
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
</LinearLayout>
</RelativeLayout>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView>
</ImageView>
<ImageView>
</ImageView>
<ImageView>
</ImageView>
<ImageView>
</ImageView>
</LinearLayout>
</ScrollView>
解决方法:
按照以下简单方法进行操作:
>您需要为父级使用固定的高度,即< RelativeLayout>.
>将ScrollView的高度设置为match_parent.
>确保将所有内容放入LinearLayout中.
最后,您将得到以下结果:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
</RelativeLayout>
</LinearLayout>
标签:android-layout,android-imageview,scrollview,android-scrollview,android 来源: https://codeday.me/bug/20191028/1954024.html