We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've list view listView.setOnItemClickListener(this)
and
I've ripple code in base adapter extending class View view = layoutInflater.inflate(R.layout.quick_search_property_row, null); LinearLayout propertyTypeLayout = (LinearLayout) view.findViewById(R.id.property_type_layout); //ripple effect.. propertyTypeLayout.setBackground(getRippleDrawable(R.drawable.ripple_effect)); propertyTypeLayout.setClickable(true); propertyTypeLayout.setOnTouchListener(new DrawableHotspotTouch((LollipopDrawable) propertyTypeLayout.getBackground()));
but this clickable removes onItemClickLisner on LIstView
The text was updated successfully, but these errors were encountered:
Instead use listView.setSelector(getRippleDrawable(R.drawable.ripple_effect));
Sorry, something went wrong.
No branches or pull requests
I've list view listView.setOnItemClickListener(this)
and
I've ripple code in base adapter extending class
View view = layoutInflater.inflate(R.layout.quick_search_property_row, null);
LinearLayout propertyTypeLayout = (LinearLayout) view.findViewById(R.id.property_type_layout);
//ripple effect..
propertyTypeLayout.setBackground(getRippleDrawable(R.drawable.ripple_effect));
propertyTypeLayout.setClickable(true);
propertyTypeLayout.setOnTouchListener(new DrawableHotspotTouch((LollipopDrawable) propertyTypeLayout.getBackground()));
but this clickable removes onItemClickLisner on LIstView
The text was updated successfully, but these errors were encountered: