Ejemplo n.º 1
0
 private void resumeDb() {
   if (this.bndDb == null) {
     LOG.d("Binding DB service...");
     this.bndDb =
         new DbClient(
             this,
             LOG.getPrefix(),
             new Runnable() {
               @Override
               public void run() {
                 LOG.d("DB service bound.");
                 showInReplyToTweetDetails();
               }
             });
   }
 }
Ejemplo n.º 2
0
 private void setPostToAccountExclusive(final ServiceRef svc) {
   if (svc == null) return;
   LOG.d("setPostToAccountExclusive(%s)", svc);
   this.enabledPostToAccounts.enableExclusiveAndSetPreSpecified(svc);
   PostToAccountLoaderTask.setAccountBtns(this.llSubAccounts, this.enabledPostToAccounts);
 }