如何阻止ScrollView在LinearLayout内容下搜索内容? ScrollView只使用所有显示空间,我不能限制它。 试用主要的Relative-和LinearLayout。
我的代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >
<LinearLayout
xmlns:myapp="http://schemas.android.com/apk/res/your.app.package"
android:id="@+id/ad_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
</LinearLayout>
<ScrollView
android:id="@+id/ScrollView1"
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_weight="1" >
<RelativeLayout
android:id="@+id/RelativeLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="bottom"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:contentDescription="@string/image"
android:onClick="openImage1"
android:scaleType="fitStart"
android:src="@drawable/loading"
android:adjustViewBounds="true"
android:background="#000000" />
</RelativeLayout>
</ScrollView>
</LinearLayout>
答案 0 :(得分:1)
您尚未发布整个XML代码;我只能猜测这些元素都包含在LinearLayout
vertical
方向内。
要让ScrollView
填充LinearLayout
未拍摄的所有空格,请使用layout_weight
。
<ScrollView
android:id="@+id/ScrollView1"
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_weight="1" >
答案 1 :(得分:1)
在我的滚动视图中有一个RelativeLayout对我来说似乎有点奇怪..但是如果我正确理解你的问题,你希望scrollview位于你在那里的上部LinearLayout下面。我猜你正在寻找以下内容:(看看我添加的新LinearLayout
和android:layout_below
。我还将外部布局更改为{{1}再一次,我不确定你到底想要做什么,但我希望这在某种程度上有所帮助。)
RelativeLayout