自定义弹框一(PopupWindow实现) 响应两种点击事件

本文介绍了如何使用PopupWindow创建自定义弹框,并详细讲解了如何处理两种点击事件:一种是在弹框本身上响应点击,另一种是在弹框所依附的Activity上响应点击。通过这种方式,可以简化接口对接,方便地实现弹框的交互功能。
摘要由CSDN通过智能技术生成

自定义弹框通常可以使用 自定义的popupwindow,自定义的activity,自定义的dialog来实现  这里先用popupwindow来实现 并且可以在弹框上实现点击事件 或者在其所依附的activity上响应  其实都是一样的  但是如果点击弹框想在activity上处理事件 这种就比较简单了 避免了使用接口对接

第一种    在弹框上响应点击事件

    先准备资源文件

alert_dialo.xml

             

<?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="wrap_content"
    android:gravity="center_horizontal"
    android:orientation="vertical"
    >

    <LinearLayout
        android:id="@+id/pop_layout"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:orientation="vertical"
        android:layout_alignParentBottom="true"
        android:background="@drawable/btn_style_alert_dialog_background"
        >


        <Button
            android:id="@+id/btn_take_photo"

            android:layout_marginTop="20dip"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="拍照"
            android:background="@drawable/btn_style_alert_dialog_button"
            android:textStyle="bold"
            />

        <Button
            android:id="@+id/btn_pick_photo"

            android:layout_marginTop="5dip"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="从相册选择"
            android:background="@drawable/btn_style_alert_dialog_button"
      
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值