大家好。我是新手。我的目标是当我想单击 ListView 中的特定项目时,它应该打开一个我已编程的新活动。例如:当我点击“John”时,我希望它打开一个叫X的班级,Mary,应该打开一个班级Y,Charlie,Z班,等等。我尝试在代码末尾使用“onListItemClick”代码,但它不起作用。当我从 ListView 应用程序中单击 John 的名字时,什么也没有发生。请在我的代码错误的地方帮助我,我应该把代码放在哪里以及正确的代码是什么。
PS:我在 Manifest 文件中声明了所有活动
这是我正在使用的代码:
public class Searchsort extends Activity {
private ListView lv1;
private EditText ed;
private String lv_arr[]={"John","Mary","Carl","Rose","Charlie","Allan", "João"};
private ArrayList<String> arr_sort= new ArrayList<String>();
int textlength=0;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.main);
lv1 = (ListView)findViewById(R.id.ListView01);
ed = (EditText)findViewById(R.id.EditText01);
// By using setAdpater method in listview we an add string array in list.
lv1.setAdapter(new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1 , lv_arr));
ed.addTextChangedListener(new TextWatcher() {
public void afterTextChanged(Editable s) {
}
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
public void onTextChanged(CharSequence s, int start, int before, int count) {
textlength=ed.getText().length();
arr_sort.clear();
for(int i=0;i<lv_arr.length;i++) {
if(textlength<=lv_arr[i].length()) {
if(ed.getText().toString().equalsIgnoreCase((String) lv_arr[i].subSequence(0, textlength))) {
arr_sort.add(lv_arr[i]);
}
}
}
lv1.setAdapter(new ArrayAdapter<String> (Searchsort.this,android.R.layout.simple_list_item_1 , arr_sort));
}
});
}
public void onListItemClick(ListView parent, View v, int position, long id) {
if ("John".equals(lv_arr[position])) {
Intent myIntent = new Intent(Searchsort.this, X.class);
startActivity(myIntent);
if ("Mary".equals(lv_arr[position])) {
Intent myIntent = new Intent(Searchsort.this, Y.class);
startActivity(myIntent);
if ("Charlie".equals(lv_arr[position])) {
Intent myIntent = new Intent(Searchsort.this, W.class);
startActivity(myIntent);
}
}
}