Custom dialog on Android: How can I center its title?

前端 未结 13 2179
后悔当初
后悔当初 2020-11-27 12:43

I\'m developing an Android application.

How can I center the title for a custom dialog that I\'m using?

13条回答
  •  醉话见心
    2020-11-27 13:20

        AlertDialog alertDialog = new AlertDialog.Builder(activity)
    
                .setMessage(message)
                .create();
        alertDialog.setIcon(R.mipmap.ic_launcher_round);
    
        @SuppressLint("RestrictedApi")
        DialogTitle titleView=new DialogTitle(activity);
        titleView.setText(title);
        titleView.setPaddingRelative(32,32,32,0);
        alertDialog.setCustomTitle(titleView);
    

提交回复
热议问题