我想在操作栏上显示ic_drawer
图标。我认为这是方式
getActionBar().setDisplayHomeAsUpEnabled(true);
getActionBar().setHomeButtonEnabled(true);
mDrawerToggle = new ActionBarDrawerToggle(
this,
mDrawerLayout,
R.drawable.ic_drawer,
R.string.drawer_open,
R.string.drawer_close
) {};
我在AppCompatActivity
主题Theme.AppCompat.Light.DarkActionBar
中使用它。它为null
返回getActionBar()
值。即使getSupportActionBar()
返回null
值。我该怎么做?
答案 0 :(得分:0)
确保res/values/styles.xml
中的主题确实有actionBar。它不得继承NoActionBar
主题。