位置在com.example.qiao_yixuan.sqlitetest.Main$MyAdapter.getView(Main.java:99)vc.image = (ImageView)findViewById(R.id.image);
vc.name = (TextView)findViewById(R.id.name);
vc.phone = (TextView)findViewById(R.id.phone);
vc.dial = (Button)findViewById(R.id.dial);
vc.msg = (Button)findViewById(R.id.msg);这几个不能直接findviewbyid,需要获得一个布局的view,在该布局内findviewbyidView view = LayoutInflater.from(mContext).inflate(
                    R.layout.XXXX, null); //XXX布局文件里面有你的image\name\phone等控件
vc.image = (ImageView)view.findViewById(R.id.image);//其他类似控件依次类推,是在view里find