1

我的弹出窗口设计在窗口顶部留下了空白区域。我尝试了不同的布局选项,但空间仍然存在。我不明白如何消除这个。我正在使用自定义弹出窗口请帮助。 在此处输入图像描述

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:orientation="vertical" >
    <TextView
        android:id="@+id/text"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:textColor="#FFF" 
       android:text="Input a Value"/> 
    <ImageView
        android:id="@+id/image"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="@drawable/severity_rating"
        android:layout_marginRight="5dp" />
  <LinearLayout
         android:layout_width="match_parent"
        android:layout_height="match_parent" 
        android:orientation="horizontal" >
    <EditText 
        android:id="@+id/popup_et"
        android:layout_height="wrap_content"
        android:layout_width="100dp" 
        android:inputType="number" />
     <Button
        android:id="@+id/dialogButtonOK"
        android:layout_width="100dp"
        android:layout_height="wrap_content"
        android:text="Ok"/>
     <Button
        android:id="@+id/dialogButtonCancel"
        android:layout_width="100dp"
        android:layout_height="wrap_content"
        android:text="cancel"/>
     </LinearLayout>
</LinearLayout>
4

3 回答 3

1

采用dialog.getWindow().setBackgroundDrawableResource(android.R.color.transparent);

于 2013-10-10T08:36:22.087 回答
0

将高度设置为 fill_parent 到第一个线性布局没有帮助?

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent" 
    android:orientation="vertical" >
于 2013-10-10T08:31:25.323 回答
0

试试这个..

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:orientation="vertical" >

并且您的 imageview 作为 src

<ImageView
        android:id="@+id/image"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:src="@drawable/severity_rating"
        android:layout_marginRight="5dp" />
于 2013-10-10T08:41:32.563 回答