How to remove the title when launching android app?

前端 未结 12 2028
死守一世寂寞
死守一世寂寞 2021-02-06 10:43

I already remove the title in onCreate() method.

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(         


        
12条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-06 11:25

    I had the same problem.

    Personally, I solved it by replacing my Activity inheritance from ActionBarActivity to Activity.

    Hope this will help someone...

提交回复
热议问题