开发者

How to implement action listener in ListView?

开发者 https://www.devze.com 2023-03-31 01:09 出处:网络
Basically, I want to create a ListView with a bunch of items on it, and whenever the user click any item, it will open a new Activity according to which item he clicks. PLease, help me I would really

Basically, I want to create a ListView with a bunch of items on it, and whenever the user click any item, it will open a new Activity according to which item he clicks. PLease, help me I would really appreciate it a lot.

Here is my my code:

package com.hipeople;

import java.util.ArrayList;

import android.app.Activity;
import android.os.Bundle;
import android.text.Editable;
import android.text.TextWatcher;
import android.widget.ArrayAdapter;
import android.widget.EditText;
import android.widget.ListView;

public class char1 extends Activity {
/** Called when the activity is first created. */
private ListView lv1;
private EditText ed;
private String lv_arr[]={"Android","Cupcake","Donut","Eclairs","AndroidPeople","Froyo",};
private ArrayList<String>  arr_sort= new ArrayList<String>();
int textlength=0;
@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);
            lv1.setAdapter(new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1 , lv_arr));





            ed.addTextChangedListener(new TextWatcher() {
            public void afterTextChanged(Editable s) {
            }

            开发者_如何学Pythonpublic 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]);
                        }
                    }
                }


            }
            });


        }



    }


Try this,

lv1.setOnItemClickListener(new OnItemClickListener() 
      {
        public void onItemClick(AdapterView<?> arg0, View arg1,int arg2, long arg3) 
        {
            String str = ((TextView) arg1).getText().toString();
            Toast.makeText(getBaseContext(),str, Toast.LENGTH_LONG).show();
            Intent intent = new Intent(getBaseContext(),your_new_Intent.class);
            intent.putExtra("list_view_value", str);
            startActivity(intent);
        }
    });
0

精彩评论

暂无评论...
验证码 换一张
取 消