Android之使用PopupWindow使用和总结

93 阅读1分钟

不废话,先爆照

说明:

那个灰色背景是不能滑动里ListView里面的内容的

 

第一步:我们需要背景view

下面是我的background.xml文件

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".HomeActivity"
    >

    <RelativeLayout
        android:id="@+id/rl_search_background"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:focusable="true"
        androi