我的列表视图中有超过 10 行,我正在使用 JSON 从 Web URL 获取记录,但现在我想为每一行调用特定的意图,例如:-对于第一行,我想调用 ( this
),对于第二行,( http://domainname.com/s/b)等等,所以请建议我需要在我的 ListActivity 类中添加哪些代码以及在哪里调用......
public class MainActivity extends Activity {
ListView mListView;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// URL to the JSON data
String strUrl = "http://domainname.in/first.php/count/";
// Creating a new non-ui thread task to download json data
DownloadTask downloadTask = new DownloadTask();
// Starting the download process
downloadTask.execute(strUrl);
// Getting a reference to ListView of activity_main
mListView = (ListView) findViewById(R.id.lv_count);
}