예제 #1
0
 public void updateUI() {
   if (activity != null) activity.updateUI();
 }
예제 #2
0
 public void updateListView(ArrayList<String> list) {
   if (activity != null) activity.updateListView(list);
 }
예제 #3
0
 public void updateButton(final String text) {
   if (activity != null) activity.updateButton(text);
 }
예제 #4
0
 public void updateTextView3(final String text) {
   this.currentTest = text;
   if (activity != null) activity.updateTextView3(text);
 }
예제 #5
0
 public void updateTextView2(final String text) {
   if (activity != null) activity.updateTextView2(text);
 }
예제 #6
0
 /*
  * Call exact the same functions in the activity
  */
 public void updateProgress(int val) {
   if (activity != null) activity.updateProgress(val);
 }