我有一个扩展活动的主要活动。它使用类似于 android 示例中的抽屉导航。在滑动菜单上,我有一个章节列表。单击该章节的课程列表时,将显示在主要活动内的内容片段中。
所以在主要活动中,我有一个扩展片段的类。要设置片段的内容,它有一个这样的方法:
public static class contentFragment extends Fragment {
public static final String ARG_CATEGORY_NUMBER = "category_number";
public contentFragment() {
// Empty constructor required for fragment subclasses
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_content, container, false);
int i = getArguments().getInt(ARG_CATEGORY_NUMBER);
String category = getResources().getStringArray(R.array.category)[i];
((MainActivity) this.getActivity()).refreshDisplay(this.getActivity(),rootView, category);
getActivity().setTitle(category);
return rootView;
}
}
这是使用服装适配器填充 listView 的 refreshDisplay 方法:
public void refreshDisplay(Context context, View view, String category) {
List<Lesson> lessonByCategory = datasource.findByCategory(category);
ListView lv = (ListView) view.findViewById(R.id.listView);
ArrayAdapter<Lesson> adapter = new LessonListAdapter(context, lessonByCategory);
lv.setAdapter(adapter);
}
现在,如何使用 onListItemClick 为单击项目的详细信息启动一个新活动?我有下面的方法。但我不知道该放在哪里。当我在调用refreshDisplay()后放入 Fragment但随后它获取单击的项目(章节)的位置是滑动菜单而不是片段内列表中的项目(课程)(我的内容片段) .
protected void onListItemClick(ListView l, View v, int position, long id) {
Log.i(LOGTAG, "onListItemClick call shod");
Lesson lesson = lessons.get(position);
Intent intent = new Intent(this, LessonDetailActivity.class);
intent.putExtra(".model.Lesson", lesson);
intent.putExtra("isStared", isStared);
startActivityForResult(intent, LESSON_DETAIL_ACTIVITY);
}
我怎样才能解决这个问题?我想要的是我有一个包含章节列表的滑动菜单。单击一章时,将显示与该章相关的课程(到目前为止有效)。然后当点击一课时,会打开该课详细信息的新活动(这是我的问题)。