弹出窗口布局设计留空白空间

时间:2013-10-10 08:26:54

标签: android android-layout

我的弹出窗口设计在窗口顶部留下了空白区域。我尝试不同的布局选项但空间持久。我不明白如何消除这个。我正在使用自定义弹出窗口请帮助。 enter image description here

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

3 个答案:

答案 0 :(得分:1)

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

答案 1 :(得分: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" >

答案 2 :(得分: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" />