我正在设置工具栏标题,我的代码行是
View customView = getSupportActionBar().getCustomView();
TextView textViewToolbarTitle = (TextView) customView.findViewById(R.id.my_toolbar_title);
我的错误为java.lang.NullPointerException
View customView = getSupportActionBar().getCustomView();
请帮忙。
答案 0 :(得分:0)
您将无法通过代码中使用的方式访问自定义视图,以便在活动中的代码行下方使用自定义视图,在setContentView()行之后的onCreate()方法中使用
LayoutInflater mInflater = LayoutInflater.from(this);
View mCustomView = mInflater.inflate(R.layout.custom_actionbar, null);
尝试此操作,您将获得处理下一个任务和事件的视图。