Beispiel #1
0
 public void updateData(Dictionary d) {
   dic = d;
   mData = new Vector();
   mData.addAll(d.getWords().entrySet());
   notifyDataSetChanged();
 }
Beispiel #2
0
 public void setDictionary(Dictionary d) {
   dic = d;
   mData = new Vector();
   mData.addAll(d.getWords().entrySet());
 }
Beispiel #3
0
 public CloudAdapter(Activity a, Dictionary d) {
   dic = d;
   mData = new Vector();
   mData.addAll(d.getWords().entrySet());
   context = a;
 }