我无法找到解决方案。我设法解决了滚动视图不与底部的按钮+ textview重叠的问题,但我仍然无法设置从屏幕顶部开始而不是从我的按钮上方滚动视图。
请注意,即使是底部的linearlayout(按钮+ textview)也不是我想要的。我无法找到正确定位的方法。
Eclipse也没有帮助,因为xml的文本视图在我的鼠标下不断变化,使得它非常烦人。我不得不打开一个外部编辑器进行编辑。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center|top" >
<LinearLayout
android:id="@+id/LinearLayout2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true" >
<TextView
android:id="@+id/text_phrase"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:text="@string/play" />
</LinearLayout>
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/LinearLayout2"
android:layout_alignParentLeft="true"
android:layout_marginBottom="18dp" >
<LinearLayout
android:id="@+id/layout_player_checkboxes"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="top"
android:orientation="vertical" >
<CheckBox
android:id="@+id/checkBox1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="CheckBox" />
</LinearLayout>
</ScrollView>
答案 0 :(得分:3)
如果您将[{1}}和android:layout_alignParentTop="true"
添加到滚动视图中,同时保留已有的剩余内容,则应从顶部开始并填充下面的屏幕,直至找到linearlayout2。 (如果您决定切换到rajesh.adhi建议的列表视图,则同样适用)
哦,你似乎也错过了android:layout_weight="1"
。