喜 我通过观看ibm教程构建了一个rss。在这里我得到rss feed的列表视图。 我有一个类showdescription,其中我正在进行特定列表视图项的描述。
但它没有显示项目点击的descriton。
这是我的onclicklistener代码
public void onItemClick(AdapterView parent, View v, int position, long id)
{
Log.i(tag,"item clicked! [" + feed.getItem(position).getTitle() + "]");
Intent itemintent = new Intent(this,ShowDescription.class);
Bundle b = new Bundle();
b.putString("title", feed.getItem(position).getTitle());
b.putString("description", feed.getItem(position).getDescription());
b.putString("link", feed.getItem(position).getLink());
b.putString("pubdate", feed.getItem(position).getPubDate());
itemintent.putExtra("android.intent.extra.INTENT", b);
startSubActivity(itemintent,0);
}
此代码显示startSubActivity中的错误并要求实现其
方法private void startSubActivity(Intent itemintent, int i) {
// TODO Auto-generated method stub
}
但它没有显示特定项目的详细信息