Android AlertDialog with rounded corners

前端 未结 6 1634
猫巷女王i
猫巷女王i 2020-12-02 08:39

I have been trying to make my Alert Dialog with rounded corners but somehow I am not able to. I have tried and I failed. I tried to follow this blog http://blog.stylingandro

6条回答
  •  臣服心动
    2020-12-02 09:38

    1. create xml in drawable folder with dialog_corner.
    
    
      
      
    
    

    2.put in layout

    android:background="@drawable/dialog_corner"

    3.in you java file keep below code

    View mView = LayoutInflater.from(mContext).inflate(R.layout.layout_pob,null); 
    alertDialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
    

提交回复
热议问题