-1

i want something like this

HorizontalScrollView with images and images should me marked or unmarked by the user. As you can see in the attached image,User can select two images at a time. Please see the attached image.

Asad Ali
  • 309
  • 3
  • 14

1 Answers1

0

Check your dependencies in the build.gradle file. Different versions of support library may be cause.

For example

compile 'com.android.support:appcompat-v7:22.2.1'
compile 'com.android.support:design:22.2.1'
compile 'com.android.support:support-v4:22.2.1'
compile 'com.android.support:cardview-v7:22.0.+'
compile 'com.android.support:recyclerview-v7:22.0.+'

If any library uses another version like

compile 'com.android.support:support-v4:23.0.1'

This may be cause of error.

ersinyildiz
  • 328
  • 1
  • 2
  • 14