ฉันกำลังพยายามเพิ่มการสนับสนุนสำหรับSearchView
Android 3.0+ ActionBar แต่ไม่สามารถใช้OnCloseListener
งานได้
นี่คือรหัสของฉัน:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.menu, menu);
searchView = (SearchView) menu.findItem(R.id.search_textbox).getActionView();
searchView.setOnQueryTextListener(new OnQueryTextListener() {
@Override
public boolean onQueryTextChange(String newText) {
searchLibrary(newText);
return false;
}
@Override
public boolean onQueryTextSubmit(String query) { return false; }
});
searchView.setOnCloseListener(new OnCloseListener() {
@Override
public boolean onClose() {
System.out.println("Testing. 1, 2, 3...");
return false;
}
});
return true;
}
การค้นหาทำงานได้ดีและทุกอย่างใช้งานได้ยกเว้นไฟล์OnCloseListener
. ไม่มีสิ่งใดถูกพิมพ์ไปยัง Logcat นี่คือ Logcat เมื่อฉันกดปุ่ม "ปิด":
02-17 13:01:52.914: I/TextType(446): TextType = 0x0
02-17 13:01:57.344: I/TextType(446): TextType = 0x0
02-17 13:02:02.944: I/TextType(446): TextType = 0x0
ฉันได้ดูเอกสารและตัวอย่างแล้ว แต่ดูเหมือนจะไม่มีอะไรเปลี่ยนแปลง ฉันใช้งานบน Asus Transformer Prime และ Galaxy Nexus ทั้งบน Ice Cream Sandwich ความคิดใด ๆ ?
อัปเดต:
ใช่ - System.out.println()
ไม่ทำงาน นี่คือหลักฐาน:
@Override
public boolean onQueryTextChange(String newText) {
System.out.println(newText + "hello");
searchLibrary(newText);
return false;
}
ผลลัพธ์ใน Logcat นี้:
02-17 13:04:20.094: I/System.out(21152): hello
02-17 13:04:24.914: I/System.out(21152): thello
02-17 13:04:25.394: I/System.out(21152): tehello
02-17 13:04:25.784: I/System.out(21152): teshello
02-17 13:04:26.064: I/System.out(21152): testhello
showAsAction
always
ช่องค้นหามีปุ่มปิดเป็นของตัวเอง แต่หากตั้งค่าเป็นช่องจะifRoom | collapseActionView
ขยายบนแถบการดำเนินการ