屏幕下方是android中的菜单栏/工具栏

时间:2013-03-05 02:01:27

标签: android android-menu android-tabs

enter image description here

有谁知道怎么做?

2 个答案:

答案 0 :(得分:5)

使用LinearLayout和alignParentBottom =“true”

这样的事情:

<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>

我没有尝试编译,你可能需要解决一些错别字,但这是一个基本的想法,你可以用它来实现你想要做的事情。

答案 1 :(得分:-2)

在onCreat之后使用以下行。

    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    setContentView(R.layout.home_screen);