Custom AlertDialog Borders
问题 I am creating a custom dialog. Its example code is: final AlertDialog dialog; protected AlertDialog createDialog(int dialogId) { AlertDialog.Builder builder; builder = new AlertDialog.Builder(parent); AlertDialog fDialog = null; switch(dialogId) { case Constants.cusDialogtId: builder = new AlertDialog.Builder(parent); builder.setTitle("Title"); LayoutInflater inflater = (LayoutInflater)parent.getSystemService(Context.LAYOUT_INFLATER_SERVICE); View view = inflater.inflate(R.layout.customdialog