Android 布局:在顶部占用太多空间

发布于 2024-12-16 15:29:32 字数 1323 浏览 0 评论 0原文

在我的布局中

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

,使用上面的代码,我在一个对话框中进行设置,并且内容正确显示,但是图像上方有很多不需要的空间,这不必要地增加了对话框的高度。查看结果: 在此处输入图像描述

知道为什么顶部空间被占用。以及我该如何摆脱它。我哪里出错了?

In my layout

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

With the above code, I set in a Dialog and things are shown proeprly, but there is lot of unwanted space above the image which unnecessarily increases the height of the dialog. See the results :
enter image description here

Any idea why the top space is occupied. And how do I get rid of it. Where am I going wrong ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

捂风挽笑 2024-12-23 15:29:32

它是 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),我将更新我的答案以展示如何删除您案例中的标题。

It's the title of the Dialog, which is empty because you didn't specify a title (but the view is still there). You have to remove it, for example like this:

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
    }
    // ...
}

But that depends on whether you are using a simple Dialog or an AlertDialog. If this doesn't work for you, post your dialog-creation code (Java) and I'll update my answer to show how to remove the title in your case.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文