我正在尝试创建一个Android界面,但我对这些观点有一些重叠的问题。
这是我的代码。它位于Tab中,但我将Tab-part切掉了。如果你需要它,我会添加它。
更新:我忘记写了我有很多TextView,而不仅仅是一个
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ScrollView
android:orientation="vertical"
android:layout_height="fill_parent"
android:layout_width="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_height="fill_parent"
android:layout_width="fill_parent">
<TextView
android:text="welcome"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true" />
<!-- A lot of TextView as the one above -->
</LinearLayout>
</ScrollView>
<RelativeLayout
android:id="@+id/InnerRelativeLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" >
<Button
android:id="@+id/add"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_width="fill_parent"
android:text="@string/add" />
</RelativeLayout>
</RelativeLayout>
</FrameLayout>
这就是它的输出。正如您所看到的,在底部,文本位于按钮后面,但我希望将它们放在两个不同的布局中
答案 0 :(得分:2)
尝试将其放置在按钮上方。
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ScrollView
android:orientation="vertical"
android:layout_above="@+id/InnerRelativeLayout" //Add this
android:layout_height="fill_parent"
android:layout_width="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_height="fill_parent"
android:layout_width="fill_parent">
<TextView
android:text="welcome"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true" />
</LinearLayout>
</ScrollView>
<RelativeLayout
android:id="@+id/InnerRelativeLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" >
<Button
android:id="@+id/add"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_width="fill_parent"
android:text="@string/add" />
</RelativeLayout>
</RelativeLayout>
</FrameLayout>
答案 1 :(得分:0)
除非绝对必须,否则不要使用RelativeLayout。永远。我知道这不是一个流行的观点,但这就是我告诉所有人的。
我假设您希望滚动条占用尽可能多的空间,然后将按钮放在底部?
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<ScrollView
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_weight="1">
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="vertical">
<TextView
android:text="welcome"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<TextView
android:text="welcome"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<TextView
android:text="welcome"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<TextView
android:text="welcome"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<TextView
android:text="welcome"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<TextView
android:text="welcome"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<TextView
android:text="welcome"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<TextView
android:text="welcome"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<TextView
android:text="welcome"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<TextView
android:text="welcome"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<TextView
android:text="welcome"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<TextView
android:text="welcome"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<TextView
android:text="welcome"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
</ScrollView>
<Button
android:id="@+id/add"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="@string/add" />
</LinearLayout>
我认为你可以在ScrollView中转储LinearLayout,假设你只有一个孩子(TextView)