zoukankan      html  css  js  c++  java
  • android捕获ListView中每个item点击事件

    package com.wps.android;
     
    import java.util.ArrayList;
    import android.app.Activity;
    import android.content.Intent;
    import android.os.Bundle;
    import android.view.View;
    import android.widget.AdapterView;
    import android.widget.AdapterView.OnItemClickListener;
    import android.widget.ArrayAdapter;
    import android.widget.ListView;
     
    public class Layouts extends Activity {
        /** Called when the activity is first created. */
        private ListView mylistview;
        private ArrayList<String> list = new ArrayList<String>();
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.main);
            mylistview = (ListView)findViewById(R.id.listview);
            list.add("LinearLayout");
            list.add("AbsoluteLayout");
            list.add("TableLayout");
            list.add("RelativeLayout");
            list.add("FrameLayout");
            ArrayAdapter<String> myArrayAdapter = new ArrayAdapter<String>
                                (this,android.R.layout.simple_list_item_1,list);
            mylistview.setAdapter(myArrayAdapter);
            /*mylistview.setOnTouchListener(new OnTouchListener(){
     
                @Override
                public boolean onTouch(View v, MotionEvent event) {
                    // TODO Auto-generated method stub
                    if(event.getAction() == MotionEvent.ACTION_DOWN)
                    {
                        mylistview.setBackgroundColor(Color.BLUE);
                    }
                    return false;
                }
                 
            });*/
            mylistview.setOnItemClickListener(new OnItemClickListener(){
     
                @Override
                public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
                        long arg3) {
                    // TODO Auto-generated method stub
                    if(list.get(arg2).equals("LinearLayout"))
                    {
                        Intent intent = new Intent("com.wps.android.LINEARLAYOUT");
                        startActivity(intent);
                    }
                    if(list.get(arg2).equals("AbsoluteLayout"))
                    {
                        Intent intent = new Intent("com.wps.android.ABSOLUTELAYOUT");
                        startActivity(intent);
                    }
                    if(list.get(arg2).equals("TableLayout"))
                    {
                        Intent intent = new Intent("com.wps.android.TABLELAYOUT");
                        startActivity(intent);
                    }
                    if(list.get(arg2).equals("RelativeLayout"))
                    {
                        Intent intent = new Intent("com.wps.android.RELATIVELAYOUT");
                        startActivity(intent);
                    }
                    if(list.get(arg2).equals("FrameLayout"))
                    {
                        Intent intent = new Intent("com.wps.android.FRAMELAYOUT");
                        startActivity(intent);
                    }
                }
                 
            });
        }
    }
    package com.wps.android;
     
    import java.util.ArrayList;
    import android.app.Activity;
    import android.content.Intent;
    import android.os.Bundle;
    import android.view.View;
    import android.widget.AdapterView;
    import android.widget.AdapterView.OnItemClickListener;
    import android.widget.ArrayAdapter;
    import android.widget.ListView;
     
    public class Layouts extends Activity {
        /** Called when the activity is first created. */
        private ListView mylistview;
        private ArrayList<String> list = new ArrayList<String>();
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.main);
            mylistview = (ListView)findViewById(R.id.listview);
            list.add("LinearLayout");
            list.add("AbsoluteLayout");
            list.add("TableLayout");
            list.add("RelativeLayout");
            list.add("FrameLayout");
            ArrayAdapter<String> myArrayAdapter = new ArrayAdapter<String>
                                (this,android.R.layout.simple_list_item_1,list);
            mylistview.setAdapter(myArrayAdapter);
            /*mylistview.setOnTouchListener(new OnTouchListener(){
     
                @Override
                public boolean onTouch(View v, MotionEvent event) {
                    // TODO Auto-generated method stub
                    if(event.getAction() == MotionEvent.ACTION_DOWN)
                    {
                        mylistview.setBackgroundColor(Color.BLUE);
                    }
                    return false;
                }
                 
            });*/
            mylistview.setOnItemClickListener(new OnItemClickListener(){
     
                @Override
                public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
                        long arg3) {
                    // TODO Auto-generated method stub
                    if(list.get(arg2).equals("LinearLayout"))
                    {
                        Intent intent = new Intent("com.wps.android.LINEARLAYOUT");
                        startActivity(intent);
                    }
                    if(list.get(arg2).equals("AbsoluteLayout"))
                    {
                        Intent intent = new Intent("com.wps.android.ABSOLUTELAYOUT");
                        startActivity(intent);
                    }
                    if(list.get(arg2).equals("TableLayout"))
                    {
                        Intent intent = new Intent("com.wps.android.TABLELAYOUT");
                        startActivity(intent);
                    }
                    if(list.get(arg2).equals("RelativeLayout"))
                    {
                        Intent intent = new Intent("com.wps.android.RELATIVELAYOUT");
                        startActivity(intent);
                    }
                    if(list.get(arg2).equals("FrameLayout"))
                    {
                        Intent intent = new Intent("com.wps.android.FRAMELAYOUT");
                        startActivity(intent);
                    }
                }
                 
            });
        }
    }
  • 相关阅读:
    BZOJ 1013--[JSOI2008]球形空间产生器sphere(高斯消元)
    BZOJ 1012--[JSOI2008]最大数maxnumber(二分&单调栈)
    BZOJ 3357--[Usaco2004]等差数列(STL&DP)
    BZOJ 1011--[HNOI2008]遥远的行星(乱搞)
    BZOJ 1010--[HNOI2008]玩具装箱toy(斜率优化dp)
    BZOJ 5334--[Tjoi2018]数学计算(线段树)
    BZOJ 5395--[Ynoi2016]谁的梦(STL&容斥)
    BZOJ 1008--[HNOI2008]越狱(容斥&快速幂)
    一个典型的装饰器
    Nginx 配置文件详解
  • 原文地址:https://www.cnblogs.com/zhujiabin/p/4762620.html
Copyright © 2011-2022 走看看