我有一个扩展活动的主要活动。它使用抽屉导航,就像在安卓示例中一样。在滑动菜单上,我有一个章节列表。单击该章节的课程列表将显示在主活动内的内容片段中。
所以在主活动中,我有一个扩展片段的类。 要设置片段的内容,它有一个这样的方法:
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;
}
}
这是使用服装适配器填充列表视图的刷新显示方法:
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() 后放入片段时,但随后它获得单击的项目(章节)的位置是滑动菜单,而不是片段内列表中的项目(课程)(我的内容片段)。
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);
}
我该如何解决这个问题?我想要的是我有一个包含章节列表的滑动菜单。单击一章时,将显示与该章节相关的课程(到目前为止有效)。然后,当单击课程时,将打开该课程详细信息的新活动(这是我的问题)。
在 refreshDisplay()
方法中,将侦听器添加到列表视图,如下所示:
lv.setOnItemClickListener(new AdapterView.OnItemClickListener() {
public void onItemClick (AdapterView<?> parent, View view, int position, long id) {
Log.i(LOGTAG, "onListItemClick call shod");
// get the Lesson object for the clicked row
Lesson lesson = m_adapter.getItem(position);
// use this if your `refreshDisplay()` method is in your activity
Intent intent = new Intent(MainActivity.this, LessonDetailActivity.class);
// use this if you `refreshDisplay()` method is in your fragment
Intent intent = new Intent(getActivity(), LessonDetailActivity.class);
intent.putExtra(".model.Lesson", lesson);
intent.putExtra("isStared", isStared);
startActivityForResult(intent, LESSON_DETAIL_ACTIVITY);
}
}
或者,您可以将代码从onListItemClick()
方法移动到onItemClick()
编辑:
我添加了一个如何从适配器获取单击的Lesson
对象的示例。若要使其正常工作,必须将适配器声明为成员变量。将MainActivity
替换为活动的名称。