对话中心标题android

时间:2014-11-10 23:14:04

标签: android android-alertdialog

我必须将标题文本置于对话框custom.setTitle("Center Text");

中心

其中Dialog custom;

谢谢!

1 个答案:

答案 0 :(得分:0)

*试试这个*

Dialog dialog = new Dialog(this);

dialog.setContentView(R.layout.yourlayout);

TextView titleView = (TextView)dialog.findViewById(android.R.id.title);
if(titleView != null){
    titleView.setGravity(Gravity.CENTER);
}

For more information, check this article