在android中有没有一种实用的方法(通常)来创建从右到左的水平列表视图?
我已经搜索过了,找到了this但它似乎并不实用!

最佳答案

recyclerview帮助我(而不是水平列表视图){thanx到@user2641570}。
根据documentation
public linearlayoutmanager(上下文上下文、int方向、布尔值
倒排)
参数上下文当前上下文,将用于访问资源。
方向布局方向。应水平或垂直。
当设置为true时,反转布局,从头到尾进行布局。
所以我只声明linearlayoutmanager如下:

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

一切都很好。

关于android - Android-如何创建从右到左的水平ListView?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31263852/

10-10 09:47