OnItemClick listener not working in Custom ListView
问题 I have created a custom list view and created my own adapter class I have inflated the view with below code: @Override public View getView(final int position, View convertView, ViewGroup parent) { LayoutInflater layoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); View streamrowView = layoutInflater.inflate(R.layout.streamrow, parent,false); initUI(streamrowView); tvUserMsg.setText(values[position].Message); tvPostDate.setText(values[position].postDate)