popupwindow

  popupwindow的item_popupwindow布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#ffffff"
    android:orientation="vertical"
    android:paddingBottom="2dp">

    <View
        android:layout_width="match_parent"
        android:layout_height="2.25dp"
        android:layout_alignParentTop="true"
        android:background="#000000" />

    <TextView
        android:id="@+id/redio_21"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="待支付" />

    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="#000000" />

    <TextView
        android:id="@+id/redio_22"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="已支付" />

    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="#000000" />

    <TextView
        android:id="@+id/redio_23"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="已取消" />

    <View
        android:layout_width="match_parent"
        android:layout_height="1dp" />

</LinearLayout>

直接在oncreate里复制就行

 //弹框的布局
        View contentView = View.inflate(TheorderActivity.this, R.layout.item_popupwindow, null);
        final PopupWindow popupWindow = new PopupWindow(contentView, LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
        popupWindow.setTouchable(true);//窗体可以触摸
        popupWindow.setFocusable(true);//让窗体获取焦点
        popupWindow.setOutsideTouchable(true);//设置窗体外部可以触摸
        popupWindow.setBackgroundDrawable(new BitmapDrawable());//设置背景
        TextView daizhifu = (TextView) contentView.findViewById(R.id.redio_21);
        TextView yizhifu = (TextView) contentView.findViewById(R.id.redio_22);
        TextView yiquxiao = (TextView) contentView.findViewById(R.id.redio_23);
        //框的点击事件
        daizhifu.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                viewpager.setCurrentItem(0);
            }
        });
        yizhifu.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                viewpager.setCurrentItem(1);
            }
        });
        yiquxiao.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                viewpager.setCurrentItem(2);
            }
        });
        //图片的点击事件
        popwindow.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                popupWindow.showAsDropDown(popwindow);
            }
        });


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值