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

前端 未结 13 2188
后悔当初
后悔当初 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:36

    You can do it in code as well. Assume you have dialog fragment then add following lines of code.

    @Override
    public void onStart()
    {
        super.onStart();
    
        TextView textView = (TextView) this.getDialog().findViewById(android.R.id.title);
        if(textView != null)
        {
            textView.setGravity(Gravity.CENTER);
        }
    }
    

提交回复
热议问题