Exemplo n.º 1
0
  private void readConfig() {

    String info = (String) cfgStg.get(ConstantsStorage.USERINFO_SERVER_CONFIG_INFO);
    Log.d(TAG, "readConfig xml " + info);
    if (!Util.isNullOrNil(infoCache)) {
      super.doNotify(info);
    }
  }
Exemplo n.º 2
0
 public String getInfoByKey(final int key) {
   infoCache = (String) cfgStg.get(key);
   Log.d(TAG, "getInfoByKey xml " + infoCache + " key " + key);
   return infoCache;
 }