<TextView
android:layout_width="match_parent"
android:layout_height="0.5dip"
android:background="#dddddd" />
android:layout_width="match_parent"
android:layout_height="0.5dip"
android:background="#dddddd" />
2016-07-05
获得一条线这么麻烦?
<TextView
android:layout_width="match_parent"
android:layout_height="@dimen/line_height"
android:background="@color/line_color" />
<TextView
android:layout_width="match_parent"
android:layout_height="@dimen/line_height"
android:background="@color/line_color" />
2016-07-05
最新回答 / qq_MrNobody_2
实现原理都是一样的,覆写onDrawOver方法的时候根据实际情况绘制可以在for循环中根据循环变量 i 进行绘制而且onDrawOver方法有个RecycleView parent参数,也可以在parent中取出想要的信息在进行绘制
2016-04-18
最新回答 / 全是甘货
是的,跳跃很大,其中有几个重点的方法老师并没有解释其作用notifyiteminsert和notifyitemremove 两个方法其实是recycleview自带的,因为recycleview有动画效果,传入删除或者参入的位置,recycleview就会在执行的同时带有一个动画的感觉。这个如果不去百度下,会很困惑为什么不直接更新ui,也很困惑更新的时候为什么还要传入一个位置作为参数。其他不足之处暂时想不到就不一一列举了。
2016-04-14