ทำไมเวลาเราเลื่อนสกอบาคลิกแล้ว ตำแหน่งที่เราสั่งแสดงผลมันผิด งงจริงๆ
ดูข้อมูลเพิ่มเติมเกี่ยวกับนโยบายความเป็นส่วนตัว และการใช้คุกกี้ของเราคลิก
คุกกี้เหล่านี้มีความสำคัญต่อการให้บริการบนเว็บไซต์แก่คุณ และเพื่อให้คุณสามารถใช้คุณลักษณะบางอย่างได้ คุกกี้เหล่านี้ช่วยในการยืนยันตัวบุคคลของผู้ใช้งานและช่วยป้องกันการปลอมแปลงบัญชีผู้ใช้งาน หากไม่มีคุกกี้เหล่านี้เราอาจไม่สามารถให้บริการแก่คุณได้ เราใช้คุกกี้ดังกล่าวนี้เพื่อให้บริการแก่คุณ
แม้ว่าอาจเกิดคุกกี้ แต่อาจไม่สามารถบันทึกได้เนื่องจากมีสมุดบันทึกที่คุณสามารถอัปเดตได้เว็บไซต์นี้อาจมีคุกกี้หรืออาจเกิดคุกกี้ใหม่อีกครั้ง
ดูข้อมูลเพิ่มเติมคลิก
เอ่อ ขอรูป กะ โค้ดได้ไหม จะได้ช่วยดู
*** อาจเป็นปัญหาที่รอมโม
ได้ค่ะ แต่จะส่งให้ยังไงค่ะ
ArrayAdapter list = new ArrayAdapter(this, android.R.layout.simple_list_item_1, name_info);
list_menu.setAdapter(list);
// test_list_item ******************
**********************กรณีที่เป็น test_list_item การคลิกข้อมูลถูกต้อง
แต่ถ้าเป็นsimple_list_item_1 จะมีสกอบาเพิ่มเข้ามาและเวลาเราเลื่อนสกอบาแล้วคลิก ทำให้ indexเพี้ยนไปจากเดิม ทำให้แสดงผลผิดพลาด*************************
list_menu.setOnItemClickListener(this);
public void onItemClick(AdapterView list, View arg1, int position,
long arg3) {
// TODO Auto-generated method stub
if (position != tmp) {//กรณีมีการคลิกให้แสดงตามนี้
list.getChildAt(tmp).setBackgroundColor(
Color.alpha(color.white));
list.getChildAt(position).setBackgroundColor(Color.CYAN);
image_room.setImageBitmap(data[position]);
txt_room.setText(Html.fromHtml(detail.get(position)));
tmp = position;
String a = String.valueOf(position);
Toast.makeText(this, a, Toast.LENGTH_LONG).show();
} else /////บังคับโชว์ข้อมูลลำดับที่หนึ่งเสมอโดยไม่ต้องคลิก
list.getChildAt(tmp).setBackgroundColor(Color.CYAN);
image_room.setImageBitmap(data[tmp]);
txt_room.setText(Html.fromHtml(detail.get(tmp)));
tmp = position;
String a = String.valueOf(position);
Toast.makeText(this, a, Toast.LENGTH_LONG).show();
}
}