亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

listview的過濾

發布時間:2020-06-05 18:40:52 來源:網絡 閱讀:471 作者:范恒標 欄目:移動開發

這個也是我自己通過網上找資料,自己寫的一個Demos。

內容簡單,直接代碼獻上;

public class MainActivity extends Activity {

     

     List<People> people = new ArrayList<People>() ;

     EditText editinput;

     ListView listview;

     Adapter adapter;

     

 

     @Override

     protected void onCreate(Bundle savedInstanceState) {

         super.onCreate(savedInstanceState);

         setContentView(R.layout.activity_main);

         editinput = (EditText)findViewById(R.id.edit);

        listview = (ListView)findViewById(R.id.ydlist);

         initdata();

        adapter = new Adapter( people);

         listview.setAdapter(adapter);

         editinput.addTextChangedListener(new watcher());

     }

     

      void initdata(){

         

         people.add(new People("張三","1374456"));

         people.add(new People("張三小子", "12444455"));

         people.add(new People("李一", "1345555"));

         people.add(new People("王一", "1355555"));

         people.add(new People("王二", "1365555"));

         people.add(new People("李三", "13565555"));

         people.add(new People("李一", "123555"));

      }

     

     class watcher implements TextWatcher{

 

 

         @Override

         public void beforeTextChanged(CharSequence s, int start, int count,

                 int after) {

             // TODO Auto-generated method stub    

             

         }

 

         @Override

         public void onTextChanged(CharSequence s, int start, int before,

                 int count) {

             // TODO Auto-generated method stub

             String aa = s.toString();

             Pattern p = Pattern.compile(aa);

             List<People> we = new ArrayList<People>();        

             for(int i=0;i<people.size();i++){

                 People pp = people.get(i);

             Matcher matcher = p.matcher(pp.getName()+pp.getPhome());

             if(matcher.find()){

                 we.add(pp);

             }

             }

             adapter = new Adapter( we);

            listview.setAdapter(adapter);

        }


@Override

public void afterTextChanged(Editable s) {

// TODO Auto-generated method stub

}

         

     }

     public class Adapter extends BaseAdapter  {

         private List<People> people = new ArrayList<People>();

     Adapter(List<People> people) {

             // TODO Auto-generated constructor stub

             this.people = people;

         }

     

         @Override

         public int getCount() {

             // TODO Auto-generated method stub

             return people.size();

         }

     

         @Override

         public Object getItem(int position) {

             // TODO Auto-generated method stub

             return people.get(position);

         }

     

         @Override

         public long getItemId(int position) {

             // TODO Auto-generated method stub

             return position;

         }

     

         @Override

         public View getView(int position, View convertView, ViewGroup parent) {

             // TODO Auto-generated method stub

             People p = people.get(position);

             if(convertView==null){

                 convertView = getLayoutInflater().inflate(R.layout.yd_item, null);

             }

             TextView tv1 = (TextView) convertView.findViewById(R.id.ydtext1);

             TextView tv2 = (TextView) convertView.findViewById(R.id.ydtext2);

             tv1.setText(p.getName());

             tv2.setText(p.getPhome());

             return convertView;

         }


     

         

     

     }

     public class People {

        private String Name ;

         private String Phome;

         

        

         

         public String getName() {

            return Name;

        }

     

     

     

        public void setName(String name) {

            Name = name;

        }

     

     

     

        public String getPhome() {

            return Phome;

        }

     

     

     

        public void setPhome(String phome) {

            Phome = phome;

        }

     

     

     

        public People(String name,String phone){

            super();

            this.Name = name;

            this.Phome = phone;    

        }

    }


 }

xml的代碼:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    tools:context=".MainActivity" >


    <EditText

        android:id="@+id/edit"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_alignParentLeft="true"

        android:layout_alignParentTop="true"

        android:layout_marginLeft="82dp"

        android:ems="10" >


        <requestFocus />

    </EditText>


    <ListView

        android:id="@+id/ydlist"

        android:layout_width="match_parent"

        android:layout_height="match_parent"

        android:layout_alignParentLeft="true"

        android:layout_below="@+id/edit" >

    </ListView>


</RelativeLayout>


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乡宁县| 鄱阳县| 闻喜县| 南召县| 台山市| 青田县| 衡东县| 梨树县| 隆子县| 清徐县| 资溪县| 名山县| 花莲县| 咸宁市| 柳江县| 县级市| 赣榆县| 黔西县| 沾益县| 蓬溪县| 双桥区| 盐源县| 湘潭市| 南召县| 登封市| 万年县| 常德市| 稻城县| 星子县| 平泉县| 灌云县| 满城县| 西藏| 敦煌市| 宜兰县| 上林县| 福安市| 台北市| 嘉兴市| 涪陵区| 波密县|