热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Android设计版面ListItemRecyclerView水平-AndroidDesignLayoutListItemRecyclerViewHorizontal

Iamusingthetools:listitemattributetoshowmyviewsinthedesignlayoutwitharecyclerview.P

I am using the tools:listitem attribute to show my views in the design layout with a recyclerview. Problem is, they always show up in a vertical list. Is there a way to have the Design Layout Editor display them horizontally?

我正在使用工具:listitem属性来使用recyclerview在设计布局中显示我的视图。问题是,它们总是出现在垂直列表中。有没有办法让设计版面编辑器水平显示它们?




enter image description here

I want the above image, displayed horizontally. IN THE DESIGN VIEW. NOT in the application itself, I know how to do that.

我想要上面的图像,水平显示。在设计视图中。不在应用程序本身,我知道如何做到这一点。

2 个解决方案

#1


25  

Please Check this code

请检查此代码

   

#2


-2  

Yes.

是。

When you use a RecyclerView, you need to specify a LayoutManager that is responsible for laying out each item in the view. The LinearLayoutManager allows you to specify an orientation, just like a normal LinearLayout would.

使用RecyclerView时,需要指定一个LayoutManager,负责布置视图中的每个项目。 LinearLayoutManager允许您指定方向,就像普通的LinearLayout一样。

To create a horizontal list with RecyclerView, you might do something like this:

要使用RecyclerView创建水平列表,您可以执行以下操作:

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

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

推荐阅读
author-avatar
blue秋夜听雨321
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有