コード例 #1
0
 AmazonInfoRetriever(
     TextView textView,
     String type,
     String productID,
     HistoryManager historyManager,
     Context context) {
   super(textView, historyManager);
   String country = LocaleManager.getCountry(context);
   if ("ISBN".equals(type) && !Locale.US.getCountry().equals(country)) {
     type = "EAN";
   }
   this.type = type;
   this.productID = productID;
   this.country = country;
 }