我目前有一個導航抽屜,一個操作欄(無工具欄),以及我定義爲父項Theme.AppCompat.Light
的樣式。我想留在動作條,但是當我使用的是父母,我成爲了以下錯誤:帶AppCompat和普通操作欄的導航抽屜?
"Attempt to invoke virtual method 'android.content.Context android.app.ActionBar.getThemedContext()' on a null object reference"
在該代碼:
mDrawerListView.setAdapter(new ArrayAdapter<String>(
getActionBar().getThemedContext(),
R.layout.navdrawer_item_row,
android.R.id.text1,
new String[]{
getString(R.string.title_section1),
getString(R.string.title_section2),
getString(R.string.title_section3),
}));
有任何一個解決的建議來解決? 在此先感謝
不能使用getSupportedActionBar(),「無法解析法‘getSupportedActionBar()’」 – Muffin
只是糾正代碼。請試試這個 – Psypher