我的商品a = np.empty(sum(freq.values()))
i = 0
for h,n in sorted(freq.items()):
a[i:][:n] = h
i += n
没有显示最后一项
这是我的xml代码
当我向下滚动列表时,最后一项不会显示在项目中。需要帮助来解决这个问题
ListView
答案 0 :(得分:1)
将此行添加到您的Viewpager
机器人:?layout_marginBottom =" ATTR / actionBarSize"因为您底部没有的尺寸与工具栏的尺寸完全相同
使用RecyclerView的示例
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view_trips"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"
android:layout_marginBottom="?attr/actionBarSize"/>
Viewpager的示例
<android.support.v4.view.ViewPager
android:id="@+id/viewpager_trip_history"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="?attr/actionBarSize" />
答案 1 :(得分:0)
更改行
android:layout_height="395dp"
到
android:layout_height="wrap_content"