コード例 #1
0
 public static String GetLocalizedString(String name)
 {
     if (null == sInstance)
     {
         Log.Error(TAG, string.Format("Activity has not initialized to get resource {0}", name));
         return("");
     }
     else
     {
         String result = sInstance.GetStringResource(name);
         //Log.Info(TAG, string.Format("{0} ==> {1}", name, result));
         sDebugStrings [result] = name;
         return(result);
     }
 }