Android布局:在顶部它需要太多的空间

时间:2011-11-17 11:10:31

标签: android image space

在我的布局中

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"  android:layout_height="fill_parent" 
android:id="@+id/user_pswd_new_root" android:scrollbars="vertical" 
 android:soundEffectsEnabled="true">

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/ScrollViewLogin" android:layout_width="fill_parent" android:layout_height="wrap_content" android:scrollbarStyle="outsideInset" android:scrollbars="vertical|horizontal" android:visibility="visible">

 <RelativeLayout android:layout_width="fill_parent" android:id="@+id/relativeLayout1" android:layout_height="fill_parent">

<ImageView android:background="@drawable/logo_login" android:layout_height="wrap_content" android:id="@+id/imageView1" 
android:layout_width="wrap_content" android:layout_alignParentTop="true" android:layout_centerHorizontal="true" 
android:padding="0dp" android:layout_margin="0dp"/>

...............
  </RelativeLayout>
 </ScrollView> 
 </RelativeLayout>

使用上面的代码,我设置了一个Dialog,并且显示了一些东西,但是图像上方有很多不需要的空间,这会不必要地增加对话框的高度。看结果: enter image description here

任何想法为什么顶部空间被占用。我该如何摆脱它。我哪里错了?

1 个答案:

答案 0 :(得分:3)

这是Dialog的标题,它是空的,因为你没有指定标题(但视图仍在那里)。你必须删除它,例如:

class MyDialog extends Dialog {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // make sure to call requestWindowFeature before setContentView
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.my_dialog_layout);
        // other initialization code
    }
    // ...
}

但这取决于您使用的是简单Dialog还是AlertDialog。如果这对您不起作用,请发布对话框创建代码(Java),我将更新我的答案以显示如何删除案例中的标题。