1,关于text和drawableTop之类的间距
1 android:drawablePadding="10dp"
2,用于RecyclerView的adapter刷新数据,只有把新的数据传到adapter里然后notifyDataSetChanged()就可以了,如果数据很多,当然也有针对单条的数据更改
1 public void refresh(List<Variety> list) { 2 mVarietyList = list; 3 notifyDataSetChanged();//刷新全部数据 4 //notifyItemInserted(1); 新添加一条 5 //notifyItemRemoved(1);删除一条 6 }
3、ImageView图片位置
http://www.cnblogs.com/pandapan/p/4614837.html
3、include,一个布局同时include两次同一个布局时,第二个include的控件的点击响应事件无效
1 Caused by: java.lang.ClassCastException: android.widget.LinearLayout cannot be cast to android.widget.Button 2 3 报这个错时,看看include是否加了width,height
时间: 2024-10-08 20:50:38