Tôi có một số thư mục có tệp HTML trong thư mục "nội dung" trong dự án Android của tôi. Tôi cần hiển thị các tệp HTML này từ các thư mục con của tài sản trong danh sách. Tôi đã viết một số mã về việc tạo danh sách này.Danh sách các tệp trong thư mục nội dung và thư mục con của nó
lv1 = (ListView) findViewById(R.id.listView);
// Insert array in ListView
// In the next row I need to insert an array of strings of file names
// so please, tell me, how to get this array
lv1.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, filel));
lv1.setTextFilterEnabled(true);
// onclick items in ListView:
lv1.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> a, View v, int position, long id) {
//Clicked item position
String itemname = new Integer(position).toString();
Intent intent = new Intent();
intent.setClass(DrugList.this, Web.class);
Bundle b = new Bundle();
//I don't know what it's doing here
b.putString("defStrID", itemname);
intent.putExtras(b);
//start Intent
startActivity(intent);
}
});
mContext là gì? –
nếu bạn đang làm điều này từ một hoạt động hoặc dịch vụ, sau đó mContext = getApplicationContext(); hoặc mContext = ActivityName.this; Ngoài ra bạn có thể loại bỏ nó. – Kammaar
Đối tượng ngữ cảnh là – Kammaar