应点击带有图像和图像的水平滚动视图?

时间:2016-02-08 15:14:51

标签: java android android-layout android-fragments

i want something like this

带有图像和图像的Horizo​​ntalScrollView应该由用户标记或取消标记。 正如您在附加图像中看到的,用户可以一次选择两个图像。 请参阅附图。

1 个答案:

答案 0 :(得分:0)

检查build.gradle文件中的依赖项。支持库的不同版本可能是原因。

例如

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.+'

如果任何库使用其他版本,如

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

这可能是错误原因。

相关问题