0
好的,所以到目前爲止,我讓我的應用程序顯示一個活動,並可以鏈接到基於點擊案件的不同活動。現在,我的問題是,你如何使用與listview項目中的數據相對應的數據填充打開的活動?ListView在點擊後打開活動,用數據填充新打開的活動,如何?
易於表示,
ListView (for ex. 10 items)
On click, opens ContentViewer activity
void ContentViewer::onCreate() {
setContentView contentviewer(xml);
}
(contentviewer has different textviews and imageviews with diff IDs.)
現在,當contentviewer通過點擊情況下爲0(在列表視圖第一項),然後數據0,圖像0等打開。
任何想法?