Android--popupwindow实现底部弹窗

首先在res目录下新建anim目录,在anim目录下建两个动画效果文件,用来控制菜单的弹出和隐藏:

image.png


popshow_anim.xml:

 



    

    

上面的是菜单弹出时的效果, translate 位置转移动画效果 duration 属性为动画持续时间 ,fromXDelta 属性为动画起始时 X坐标上的位置 toYDelta 属性为动画结束时 Y坐标上的位置 ,属性里面还可以加上%和p,例如:
android:toXDelta=”100%”,表示自身的100%,也就是从View自己的位置开始。
android:toXDelta=”80%p”,表示父层View的80%,是以它父层View为参照的。
pophidden_anim.xml:



    
    

然后在style.xml里新建菜单的style:


然后是layout目录下:新建名为:pop.xml 的layout文件,布局弹出的窗口:



    
    
    
    

    
    
    
    
    

这个就不多说了。简单的一个布局。
在activity_main.xml文件里新建一个Button:用来点击:




    

同样button被指定了一个一个响应的函数,即openPopWindow。
做好前面的之后就可以写MainActivity了:

public class MainActivity extends AppCompatActivity {
    private PopupWindow popupWindow;
    private View contentView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        showPopwindow();
    }
    /**
     * 显示popupWindow
     */
    private void showPopwindow() {
        //加载弹出框的布局
        contentView = LayoutInflater.from(MainActivity.this).inflate(
                R.layout.pop, null);


        popupWindow = new PopupWindow(contentView,
                ViewGroup.LayoutParams.MATCH_PARENT,
                ViewGroup.LayoutParams.WRAP_CONTENT);
        popupWindow.setFocusable(true);// 取得焦点
        //注意  要是点击外部空白处弹框消息  那么必须给弹框设置一个背景色  不然是不起作用的
        popupWindow.setBackgroundDrawable(new BitmapDrawable());
        //点击外部消失
        popupWindow.setOutsideTouchable(true);
        //设置可以点击
        popupWindow.setTouchable(true);
        //进入退出的动画,指定刚才定义的style
       popupWindow.setAnimationStyle(R.style.mypopwindow_anim_style);

        // 按下android回退物理键 PopipWindow消失解决

    }

    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
        if(event.getKeyCode()==KeyEvent.KEYCODE_BACK){
            if(popupWindow!=null&&popupWindow.isShowing()){
                popupWindow.dismiss();
                return true;
            }
        }
        return false;
    }

    /**
     * 按钮的监听
     * @param v
     */
    public void openPopWindow(View v) {
        //从底部显示
        popupWindow.showAtLocation(contentView, Gravity.BOTTOM, 0, 0);
    }
}

加入水平滑动控件


            
            
        

子空间布局




    
    
private void showPopwindow() {
        //加载弹出框的布局
        contentView = LayoutInflater.from(pipeListenerActivity.this).inflate(
                R.layout.item_marker_info, null);


        popupWindow = new PopupWindow(contentView,
                ViewGroup.LayoutParams.MATCH_PARENT,
                ViewGroup.LayoutParams.WRAP_CONTENT);
        name = popupWindow.getContentView().findViewById(R.id.tv_name);
        lat = popupWindow.getContentView().findViewById(R.id.tv_lat);
        adress = popupWindow.getContentView().findViewById(R.id.tv_adress);
        phone = popupWindow.getContentView().findViewById(R.id.tv_phone);
        manger = popupWindow.getContentView().findViewById(R.id.tv_manger);
        time = popupWindow.getContentView().findViewById(R.id.tv_time);
        rvMarker = popupWindow.getContentView().findViewById(R.id.rv_marke);
        styleViewAdapter = popupWindow.getContentView().findViewById(R.id.hl_style);
        styleinfoViewAdapter = popupWindow.getContentView().findViewById(R.id.hl_styleinfo);
        mLinearLayout= popupWindow.getContentView().findViewById(R.id.linear);
        mLinearLayout1= popupWindow.getContentView().findViewById(R.id.linear1);
        styleViewAdapter = popupWindow.getContentView().findViewById(R.id.hl_style);
        styleinfoViewAdapter = popupWindow.getContentView().findViewById(R.id.hl_styleinfo);

        popupWindow.setFocusable(true);// 取得焦点
        //注意  要是点击外部空白处弹框消息  那么必须给弹框设置一个背景色  不然是不起作用的
        popupWindow.setBackgroundDrawable(new BitmapDrawable());
        //点击外部消失
        popupWindow.setOutsideTouchable(true);
        //设置可以点击
        popupWindow.setTouchable(true);
        //进入退出的动画,指定刚才定义的style
        popupWindow.setAnimationStyle(R.style.mypopwindow_anim_style);

        // 按下android回退物理键 PopipWindow消失解决

    }
for (int i = 0; i < styleList.size(); i++)
                                {
                                    View view=LayoutInflater.from(pipeListenerActivity.this).inflate(R.layout.item_month1,mLinearLayout,false);
                                    ImageView img= view.findViewById(R.id.iv_style);
                                    TextView textView = view.findViewById(R.id.tv_month);
                                    switch (styleList.get(i)){
                                        case "a":
                                            img.setImageResource(R.mipmap.li);
                                            break;
                                        case "b":
                                            img.setImageResource(R.mipmap.ya);
                                            break;
                                        
                                    }
                                    textView.setText(styleList.get(i));
                                    mLinearLayout.addView(view);

                                    textView.setOnClickListener(new View.OnClickListener() {
                                        @Override
                                        public void onClick(View v) {

                                        }
                                    });
                                }

 

你可能感兴趣的:(Android,Android开发)