*私のアプリケーションでは、インテント関数を使用するリストビューアクティビティを使用していますが、タブアクティビティに移動する必要があります。ReleaselistActivity.java
protected void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);
Cursor Release = mDbHelper.fetchRelease(id);
String Releasename = Release.getString(Release.getColumnIndexOrThrow(ProjectsDbAdapter.KEY_TITLE));
Release.close();
Intent i1= new Intent(this, TabLayout.class);
i1.putExtra(ProjectsDbAdapter.KEY_ROWID_REL, id);
i1.putExtra("project", gprojectName);
i1.putExtra("release", Releasename);
startActivity(i1);
}
タブアクティビティに移動できません。リストビューをクリックすると、アプリケーションが停止したことが示されます。