系统登录进来,进入一个含有tab导航的activity.但总是报空指针。
代码:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.khxxgl__xjkh);
// Set up the action bar to show tabs.
final ActionBar actionBar = getActionBar();
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
// For each of the sections in the app, add a tab to the action bar.
actionBar.addTab(actionBar.newTab().setText(R.string.title_section1).setTabListener(this));
actionBar.addTab(actionBar.newTab().setText(R.string.title_section2).setTabListener(this));
actionBar.addTab(actionBar.newTab().setText(R.string.title_section3).setTabListener(this));
}
输出 actionBar ,值为null。
很是郁闷,求大侠解答
------解决方案--------------------
信息太少,檢查一下你用的是什麼activity,api版本
------解决方案--------------------
加上这句requestWindowFeature(Window.FEATURE_ACTION_BAR);
------解决方案--------------------
看看你是否使用的是Theme类型,有些不支持ActionBar
------解决方案--------------------
你的THEME没有设置正确