应用程序名称显示在Android设备中

时间:2011-03-05 17:18:11

标签: android android-layout

嗨,我是一名新开发者,我只想创建一些自己的应用程序。 在我的应用程序中,我在底部放置了两个按钮,问题是我的应用程序的名称已显示在页面顶部,主页面不完全可见,因此底部的按钮不可见。怎么解决这个问题.....

2 个答案:

答案 0 :(得分:1)

使用活动主题控制顶部栏,您可以阅读有关here的更多信息。

除此之外,您应该使用其中一种更灵活的布局,例如RelativeLayout或LinearLayout,它们会在可用空间内自动调整项目在屏幕上的位置。您可以阅读有关here.

的更多信息

答案 1 :(得分:0)

您可以使用以下方法使标题栏(显示您的应用名称的位置)消失:

requestWindowFeature(Window.FEATURE_NO_TITLE);

在调用onCreate()

之后,在super.onCreate()内拨打电话

避免使用AbsoluteLayout并尝试以下列方式使用RelativeLayout来实现您的目标:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mother_container"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <Button android:id="@+id/btn_left"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:text="Button Left" />

    <Button android:id="@+id/btn_right"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:text="Button Rigth" />
</RelativeLayout>