How to align center the title or label in activity?

后端 未结 4 2050
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-01 13:15

I know there are two ways of setting the title of activity. One way is the setting it in the android manifest like this android:label=\"@string/app_name\".

4条回答
  •  被撕碎了的回忆
    2020-12-01 14:04

    I found another way of setting the title center, just put the code under the setContentView(R.layout.new)...

    ((TextView)((FrameLayout)((LinearLayout)((ViewGroup) getWindow().getDecorView()).getChildAt(0)).getChildAt(0)).getChildAt(0)).setGravity(Gravity.CENTER);
    

    Hope this helps. Thanks!

提交回复
热议问题