我在使用RecyclerView适配器时遇到了麻烦。请帮帮我。
我正在构建一个应用程序来读取文本,在一个Activity中,我创建了两个选项Item Menu来增加和减少文本由recycleAdapter分配的项目的大小。 但我无法使其发挥作用。有谁能告诉我解决方案吗?
编辑:
这是将数据分配给RecyclerView的代码:
recycleViewItemList = (RecyclerView) view.findViewById(R.id.RecylerViewItemList);
recycleAdapter = new RecycleAdapter(getContext(), ContentChapter, "truyenchu");
recycleViewItemList.setAdapter(recycleAdapter);
recycleViewItemList.setLayoutManager(new StaggeredGridLayoutManager(1, StaggeredGridLayoutManager.VERTICAL));
这是选项项目菜单代码:
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()){
case R.id.txtIncreaseTextSize:
return true;
case R.id.txtDecreaseTextSize:
return true;
default:
return true;
}
}
现在我想在ActionBar上单击txtIncreaseTextSize按钮,然后TextView文本大小将增加1.但TextView在RecyclerAdapter中定义,我无法与之交互。