|
|
|
Android - ขอคำแนะนำวิธีทำ เมื่อคลิก listview แล้วให้โชว์ข้อมูลในหน้าเดียวกันค่ะ ทำไม่ได้ซักที |
|
|
|
|
|
|
|
ทำตรง getView() ครับ ในบทความก็มีสอนหลายวิธีครับ
Code (Android-Java)
public View getView(int position, View convertView, ViewGroup parent) {
// TODO Auto-generated method stub
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
if (convertView == null) {
convertView = inflater.inflate(R.layout.showimage, null);
}
TextView textView = (TextView) convertView.findViewById(R.id.textView1);
String strPath = "/mnt/sdcard/picture/"+lis[position][2].toString();
textView.setText(lis[position][1].toString());
// Image Resource
ImageView imageView = (ImageView) convertView.findViewById(R.id.imageView1);
Bitmap bm = BitmapFactory.decodeFile(strPath);
imageView.setImageBitmap(bm);
return convertView;
}
|
|
|
|
|
Date :
2014-08-24 14:28:24 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|