Title, etc. not showing in Android Toolbar

前端 未结 3 552
天命终不由人
天命终不由人 2020-12-06 16:43

I\'ve just added an Android Toolbar to an app I\'m working on. The toolbar placement works correctly with the toolbar layout appearing at the top of the display. However,

3条回答
  •  渐次进展
    2020-12-06 17:20

    Tutorial: http://www.viralandroid.com/2015/08/android-toolbar-example.html

    styles.xml

    
    

    layout file

    
        
    

    java

    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);
    

提交回复
热议问题