先上我的不符合预期的界面图:
图一为界面一刚刚打开,显示item信息 name:smartDisplay_n
图二为向下滑动一定距离,item显示item的操作,显示item的name:OxiEasy W60
second.png
图三为完全显示name:OxiEasy W60的item
third.png
这是看回我item的布局文件,发现
<?xml version = "1.0" encoding = "UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
。。。
</LinearLayout>
item的根部局的高度属性是 match_parent,
哇~~心态炸了
这里就是不能达到预期效果图的原因所在,把属性换为 wrap_content。看图:
emm,记录一下~~谢谢参考的链接
参考 https://blog.csdn.net/wenghaoduan/article/details/78512435
网友评论