我想设计Google Play商店中的选项。请看这个图像
显示的选项,例如可滚动的热门图表,游戏,家庭。
我将拥有动态数量的选项。任何指针,帮助。
谢谢
答案 0 :(得分:0)
如果我正确理解你的问题,你希望设计胶囊,就像在那里顶级图表,家庭,游戏等那样的胶囊,其中选项是动态的......
<强> 1。为textViews设计绿色胶囊
首先,创建一个具有大半径和绿色的矩形形状......
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/greenColorCustom" />
<corners android:radius="30dp" />
</shape>
将此形状指定为TextView的背景。
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/capsule_rectangle_green"
android:gravity="center"
android:padding="15dp"
android:text="TOP CHARTS"
android:textColor="@android:color/white" />
<强> 2。动态选项数量......
对于动态选项数,如果您希望这些选项列表可以水平滚动(我假设),您可以使用具有水平方向的RecyclerView通过设置LayoutManager。
recyclerView.setLayoutManager(new LinearLayoutManager
(this, LinearLayoutManager.HORIZONTAL, false));
无论哪种方式,我都希望你先尝试自己。因此,我只添加了一段代码。