• 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);
                    }
                }
                 
            });
        }
    }
  • 相关阅读:
    mysql5.7初始化密码报错 ERROR 1820 (HY000): You must reset your password using ALTER USER statement
    Python 国内镜像源
    PyCharm
    MySQL 表字段唯一性约束设置方法unique
    ch01系统基础信息模块详解
    Django出错提示TemplateDoesNotExist at /
    windows更改pip源(可用)
    异常处理
    前端基础学习(4) BOM DOM 节点操作 事件
    前端练习题 1 BOM DOM
  • 原文地址:https://www.cnblogs.com/weijing44/p/6999308.html
Copyright © 2020-2023  润新知