Horizo​​ntall滚动卡视图与突出的相邻片段

时间:2016-02-03 11:57:49

标签: android android-layout android-studio android-viewpager android-cardview

我正在尝试找到方法在android 中执行以下设计。但我无法找到解决方案。谁能给我一个解决方案?

enter image description here

2 个答案:

答案 0 :(得分:1)

尝试使用此库为您的应用程序获取Horizo​​ntall滚动卡视图

AppIntro 是一款Android库,可帮助您为自己的应用制作精彩的介绍,例如Google应用中的介绍。

AppIntro git

enter image description here

答案 1 :(得分:-1)

您应该将RecyclerView与水平布局一起使用。您可以按以下方法为RecyclerView设置水平布局:

LinearLayoutManager layoutManager = new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL, false);

RecyclerView myRList = (RecyclerView) findViewById(R.id.my_recycler_view);
myRList.setLayoutManager(layoutManager);

使用RecyclerView的良好指南:Using the RecyclerView