Android Recycler Views 有替代方案吗?
Is There An Alternative To Android Recycler Views?
我正在做一个 android 项目,它需要类似回收站视图中的功能。然而,回收站视图需要 android 5.0.1 API 21,这将减少可以使用它的设备数量。我想知道是否有人知道我可以使用任何替代品来代替 recylcer 视图?我已经链接到一个小视频,说明该视图将尝试完成什么。
https://drive.google.com/open?id=0B8alYNlu3SuoSEk0bE55cDhXWVE
查看ListView
这里有一些教程
http://developer.android.com/guide/topics/ui/layout/listview.html
http://www.vogella.com/tutorials/AndroidListView/article.html
这一个用于创建自定义列表视图
http://www.learn2crack.com/2013/10/android-custom-listview-images-text-example.html
However the recycler view requires android 5.0.1 API 21
不,不是。 recyclerview-v7
回到 API 级别 7。因此,如果您想要 RecyclerView
功能,请使用 RecyclerView
。
我的依赖关系如下:
compile 'com.android.support:cardview-v7:21.0.0-rc1'
compile 'com.android.support:recyclerview-v7:21.0.0-rc1'
他们应该是:
compile 'com.android.support:cardview-v7:23.0.0'
compile 'com.android.support:recyclerview-v7:23.0.0'
我正在做一个 android 项目,它需要类似回收站视图中的功能。然而,回收站视图需要 android 5.0.1 API 21,这将减少可以使用它的设备数量。我想知道是否有人知道我可以使用任何替代品来代替 recylcer 视图?我已经链接到一个小视频,说明该视图将尝试完成什么。
https://drive.google.com/open?id=0B8alYNlu3SuoSEk0bE55cDhXWVE
查看ListView
这里有一些教程
http://developer.android.com/guide/topics/ui/layout/listview.html
http://www.vogella.com/tutorials/AndroidListView/article.html
这一个用于创建自定义列表视图
http://www.learn2crack.com/2013/10/android-custom-listview-images-text-example.html
However the recycler view requires android 5.0.1 API 21
不,不是。 recyclerview-v7
回到 API 级别 7。因此,如果您想要 RecyclerView
功能,请使用 RecyclerView
。
我的依赖关系如下:
compile 'com.android.support:cardview-v7:21.0.0-rc1'
compile 'com.android.support:recyclerview-v7:21.0.0-rc1'
他们应该是:
compile 'com.android.support:cardview-v7:23.0.0'
compile 'com.android.support:recyclerview-v7:23.0.0'