4

在此处输入图像描述

有谁知道如何做到这一点?

4

2 回答 2

5

使用带有 alignParentBottom="true" 的 LinearLayout

像这样的东西:

<RelativeLayout
android:id="@+id/mainLyt"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- Some layout things -->

<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/bottomBar">

<!-- some scrolling content -->
</ScrollView>

<LinearLayout
android:id="@+id/bottomBar"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="horizontal"
android:layout_alignParentBottom="true">

<!-- Some Buttons -->
</LinearLayout>

</RelativeLayout>

我没有尝试编译,您可能需要修复一些拼写错误,但这是一个基本想法,您可以通过它实现您想要做的事情。

于 2013-03-05T02:06:16.217 回答
-2

在 onCreat 之后使用以下行。

    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    setContentView(R.layout.home_screen);
于 2014-03-12T09:34:02.193 回答