コード例 #1
0
ファイル: AlertHandler.java プロジェクト: raghulj/tis
 /** Notify progress through a long running process */
 public void notifyProgress(int percent) {
   if (mActiveAlert != null) {
     System.out.println("Setting value : " + percent);
     mActiveAlert.getIndicator().setValue(percent);
   }
 }