弹出窗口没有正确的Andr​​oid l所示 [英] popup window is not properly shown in android L

查看:299
本文介绍了弹出窗口没有正确的Andr​​oid l所示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是怎么看起来像Android上的L:

this is how it looks like on android L :

在这里作为果冻豆,它看起来像:

where as on jelly bean it looks like :

下面是布局的xml文件:

here is layout xml file:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:customfont="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:background="@color/black_bg_dialog"
    android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_marginRight="30dp"
        android:layout_marginLeft="30dp"
        android:layout_centerInParent="true"
        android:layout_height="wrap_content"
        android:padding="10dp"
        android:orientation="vertical"
        android:background="@color/enquiry_bg">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:textColor="@color/enquiry_text_top"
            customfont:customTypeface="fonts/Roboto-Light.ttf"
            android:text="@string/contact_us" />

        <EditText
            android:id="@+id/et_name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/name"
            android:ellipsize="end"
            android:hint="@string/contact_hint_name"
            android:inputType="text"
            android:singleLine="true"
            android:textColor="@color/enquiry_text"
            android:layout_marginTop="20dp"
            android:textColorHint="@color/enquiry_text_hint"
            android:textSize="18sp" />

        <EditText
            android:id="@+id/et_email"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/email"
            android:ellipsize="end"
            android:hint="@string/contact_hint_email"
            android:inputType="textEmailAddress"
            android:singleLine="true"
            android:textColor="@color/enquiry_text"
            android:layout_marginTop="20dp"
            android:textColorHint="@color/enquiry_text_hint"
            android:textSize="18sp" />

        <EditText
            android:id="@+id/et_phone"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/phonenumber"
            android:ellipsize="end"
            android:hint="@string/contact_hint_phone"
            android:inputType="phone"
            android:singleLine="true"
            android:textColor="@color/enquiry_text"
            android:layout_marginTop="20dp"
            android:textColorHint="@color/enquiry_text_hint"
            android:textSize="18sp" />

        <FrameLayout
            android:id="@+id/fl_send"
            android:layout_width="match_parent"
            android:background="@color/enquiry_send_bg"
            android:layout_marginTop="20dp"
            android:layout_gravity="center"
            android:padding="10dp"
            android:layout_height="wrap_content">

            <TextView
                android:id="@+id/btn_submit"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:drawablePadding="20dp"
                android:drawableRight="@drawable/sendbutton"
                android:text="@string/contact_btn_submit"
                android:textColor="@color/white"
                android:layout_gravity="center"
                android:gravity="center"
                customfont:customTypeface="fonts/Roboto-Regular.ttf"
                android:textSize="23sp" />

        </FrameLayout>

    </LinearLayout>

    <RelativeLayout
        android:id="@+id/rl_progress_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/loading_alpha"
        android:visibility="gone">

        <ImageView
            android:id="@+id/iv_progress_icon"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
    </RelativeLayout>
</RelativeLayout> 

和code的弹出窗口:

and code for popup window :

View popUpView = activity.getLayoutInflater().inflate(R.layout.dialog_contact_us, null);

        enquiryPopUp = new PopupWindow(popUpView, RelativeLayout.LayoutParams.MATCH_PARENT, RelativeLayout.LayoutParams.MATCH_PARENT, true);
        enquiryPopUp.setBackgroundDrawable(new BitmapDrawable(null, ""));
        enquiryPopUp.setAnimationStyle(android.R.style.Animation_Dialog);
        enquiryPopUp.showAtLocation(popUpView, Gravity.CENTER, 0, 0);

我不明白我在做什么wrong.Please帮助。

I don't understand what I am doing wrong.Please Help.

推荐答案

我有我的价值-21的style.xml以下行

I have the following line in my value-21's style.xml

<item name="android:fitsSystemWindows">true</item>

这是我的问题。但我不能删除,因为这是我在这里解释一下 原因此行

This was the problem for me. But I cannot remove this line because of the reason which I explain here

所以我加了的android:fitsSystemWindows =FALSE在PopupWindow布局每个视图

so I added android:fitsSystemWindows="false" in each view of PopupWindow layout.

vooolaaaa !!!解决了。

vooolaaaa!!! solved.

这篇关于弹出窗口没有正确的Andr​​oid l所示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆