TL; DR – 我正在使用每个单元格上具有wrap_content宽度的水平回收器视图,并且除了三星设备之外,它正在按预期工作.
我的list_item.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scope_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/bg_scope_state_normal"
android:clickable="true"
android:focusable="true"
android:padding="8dp"
android:paddingStart="16dp"
android:paddingEnd="16dp"
android:layout_marginStart="6dp"
android:layout_marginEnd="6dp">
<TextView
android:id="@+id/scope_text"
android:layout_centerInParent="true"
android:background="?attr/selectableItemBackground"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="16sp"
tools:text="2/2017"/>
</RelativeLayout>
现在,这是使用此代码在samsung s3上的外观:
如果我将list_item.xml中相对布局的宽度更改为80dp,这就是它的样子:
现在,正如你可以看到文本有不同的宽度和固定的宽度我在长字中缺少字母,wrap_content应根据文本视图宽度设置宽度,但在samsungs这不起作用,它只是拉伸布局我错过了什么吗?
解决方法:
您可以在注释中删除Eugen所说的包装RelativeLayout,并使用recyclelerview的内部系统ItemDecorator代替绘制漂亮的背景.
这应该修复你的用户界面
此外,您可以使用Android Monitor转储视图层次结构,并查看S3的实际值
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。