コード例 #1
0
ファイル: RollInfo.java プロジェクト: Gelassen/congress
 public VoterAdapter(RollInfo context, List<Vote> starred2, boolean starred) {
   super(context, 0, starred2);
   this.context = context;
   this.resources = context.getResources();
   this.inflater = LayoutInflater.from(context);
   this.starred = starred;
 }
コード例 #2
0
ファイル: RollInfo.java プロジェクト: Gelassen/congress
 public VoterAdapter(RollInfo context, List<Vote> rest) {
   super(context, 0, rest);
   this.context = context;
   this.resources = context.getResources();
   this.inflater = LayoutInflater.from(context);
   this.starred = false;
 }