Exemplo n.º 1
0
 private String getPlayPath(String path, String defaultPath) {
   File file = new File(path);
   if (!file.exists()) {
     Log.i(Const.TAG, "Play OnLine");
   } else {
     Log.i(Const.TAG, "Play LocalCacheFile");
     defaultPath = path;
   }
   return defaultPath;
 }