using System; using System.Collections.Generic; namespace demo { class Program { static void Main(string[] args) { List<String> names = new List<String>(); names.Add("Bruce"); names.Add("Alfred"); names.ForEach(Print); name…
之前对ListView的BaseAdapter进行过封装,只需重写一个getView方法: 现在慢慢的RecyclerView成为主流,下面是RecyclerView.Adapter的封装: BaseRecyclerViewHolder类: public class BaseRecyclerHolder extends RecyclerView.ViewHolder { private SparseArrayCompat<View> mViews; public BaseRecyclerHol…
F3 :查看实现 F4(或control + T) :继承树 control + F6 :切换文件 control + F7 :切换视图 control + F8 :切换模板 control + O :outline control + G :查看调用 control + alt + H :查看代码引用 control + shift + up/down:切换成员变量 alt + shift + C :修改参数 alt + shift + R :重命名(双) alt + shift + M :抽…