Codota Logo
ShowcaseView.setBackgroundColor
Code IndexAdd Codota to your IDE (free)

How to use
setBackgroundColor
method
in
com.github.amlcurran.showcaseview.ShowcaseView

Best Java code snippets using com.github.amlcurran.showcaseview.ShowcaseView.setBackgroundColor (Showing top 16 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
LocalDateTime l =
  • Codota Iconnew LocalDateTime()
  • Codota IconLocalDateTime.now()
  • Codota IconDateTimeFormatter formatter;String text;formatter.parseLocalDateTime(text)
  • Smart code suggestions by Codota
}
origin: NightscoutFoundation/xDrip

    .build();
myShowcase.setBackgroundColor(Color.TRANSPARENT);
myShowcase.show();
showcased_undo = true;
      .build();
  myShowcase.setBackgroundColor(Color.TRANSPARENT);
  myShowcase.show();
  showcased_newline = true;
origin: jamorham/xDrip-plus

    .build();
myShowcase.setBackgroundColor(Color.TRANSPARENT);
myShowcase.show();
showcased_undo = true;
      .build();
  myShowcase.setBackgroundColor(Color.TRANSPARENT);
  myShowcase.show();
  showcased_newline = true;
origin: NightscoutFoundation/xDrip

  @Override
  public void run() {
    final ShowcaseView myShowcase = new ShowcaseView.Builder(activity)
        .setTarget(target)
        .setStyle(R.style.CustomShowcaseTheme2)
        .setContentTitle(title)
        .setContentText("\n" + message)
        .setShowcaseDrawer(new JamorhamShowcaseDrawer(activity.getResources(), activity.getTheme(), size1, size2, 255))
        .singleShot(oneshot ? option : -1)
        .build();
    myShowcase.setBackgroundColor(Color.TRANSPARENT);
    myShowcase.setShouldCentreText(false);
    myShowcase.setBlocksTouches(true);
    myShowcase.show();
  }
}
origin: jamorham/xDrip-plus

  @Override
  public void run() {
    final ShowcaseView myShowcase = new ShowcaseView.Builder(activity)
        .setTarget(target)
        .setStyle(R.style.CustomShowcaseTheme2)
        .setContentTitle(title)
        .setContentText("\n" + message)
        .setShowcaseDrawer(new JamorhamShowcaseDrawer(activity.getResources(), activity.getTheme(), size1, size2, 255))
        .singleShot(oneshot ? option : -1)
        .build();
    myShowcase.setBackgroundColor(Color.TRANSPARENT);
    myShowcase.setShouldCentreText(false);
    myShowcase.setBlocksTouches(true);
    myShowcase.show();
  }
}
origin: NightscoutFoundation/xDrip

  @Override
  public void run() {
    final ShowcaseView myShowcase = new ShowcaseView.Builder(activity)
        .setTarget(target)
        .setStyle(R.style.CustomShowcaseTheme2)
        .setContentTitle(title)
        .setContentText("\n" + message)
        .setShowcaseDrawer(new JamorhamShowcaseDrawer(getResources(), getTheme(), size1, size2, 255))
        .singleShot(oneshot ? option : -1)
        .build();
    myShowcase.setBackgroundColor(Color.TRANSPARENT);
    myShowcase.show();
  }
}
origin: jamorham/xDrip-plus

  @Override
  public void run() {
    final ShowcaseView myShowcase = new ShowcaseView.Builder(activity)
        .setTarget(target)
        .setStyle(R.style.CustomShowcaseTheme2)
        .setContentTitle(title)
        .setContentText("\n" + message)
        .setShowcaseDrawer(new JamorhamShowcaseDrawer(getResources(), getTheme(), size1, size2))
        .singleShot(oneshot ? option : -1)
        .build();
    myShowcase.setBackgroundColor(Color.TRANSPARENT);
    myShowcase.show();
  }
}
origin: NightscoutFoundation/xDrip

myShowcase.setBackgroundColor(Color.TRANSPARENT);
myShowcase.setShouldCentreText(false);
myShowcase.setOnShowcaseEventListener(new OnShowcaseEventListener() {
origin: jamorham/xDrip-plus

myShowcase.setBackgroundColor(Color.TRANSPARENT);
myShowcase.setShouldCentreText(false);
myShowcase.setOnShowcaseEventListener(new OnShowcaseEventListener() {
origin: jamorham/xDrip-plus

  @Override
  public void run() {
    final ShowcaseView myShowcase = new ShowcaseView.Builder(activity)
        .setTarget(target)
        .setStyle(R.style.CustomShowcaseTheme2)
        .setContentTitle(title)
        .setContentText("\n" + message)
        .setShowcaseDrawer(new JamorhamShowcaseDrawer(getResources(), getTheme(), size1, size2, 255))
        .singleShot(oneshot ? option : -1)
        .build();
    myShowcase.setBackgroundColor(Color.TRANSPARENT);
    myShowcase.show();
  }
}
origin: NightscoutFoundation/xDrip

  @Override
  public void run() {
    final ShowcaseView myShowcase = new ShowcaseView.Builder(activity)
        .setTarget(target)
        .setStyle(R.style.CustomShowcaseTheme2)
        .setContentTitle(title)
        .setContentText("\n" + message)
        .setShowcaseDrawer(new JamorhamShowcaseDrawer(getResources(), getTheme(), size1, size2))
        .singleShot(oneshot ? option : -1)
        .build();
    myShowcase.setBackgroundColor(Color.TRANSPARENT);
    myShowcase.show();
  }
}
origin: NightscoutFoundation/xDrip

    .build();
myShowcase.setBackgroundColor(Color.TRANSPARENT);
myShowcase.show();
origin: NightscoutFoundation/xDrip

private synchronized void showcasemenu(int option) {
  if ((myShowcase != null) && (myShowcase.isShowing())) return;
  if (ShotStateStore.hasShot(option)) return;
  try {
    ProfileViewTarget target = null;
    String title = "";
    String message = "";
    switch (option) {
      case SHOWCASE_PROFILE_SPLIT:
        target = new ProfileViewTarget(R.id.profile_recycler_view, this, 40, 40);
        title = getString(R.string.long_press_to_split_or_delete);
        message = getString(R.string.press_and_hold_on_the_background_to_split_or_delete);
        break;
    }
    if (target != null) {
      myShowcase = new ShowcaseView.Builder(this)
          .setTarget(target)
          .setStyle(R.style.CustomShowcaseTheme2)
          .setContentTitle(title)
          .setContentText("\n" + message)
          .setShowcaseDrawer(new JamorhamShowcaseDrawer(getResources(), getTheme(), 90, 14))
          .singleShot(oneshot ? option : -1)
          .build();
      myShowcase.setBackgroundColor(Color.TRANSPARENT);
      myShowcase.show();
    }
  } catch (Exception e) {
    Log.e(TAG, "Exception in showcase: " + e.toString());
  }
}
origin: jamorham/xDrip-plus

private synchronized void showcasemenu(int option) {
  if ((myShowcase != null) && (myShowcase.isShowing())) return;
  if (ShotStateStore.hasShot(option)) return;
  try {
    ProfileViewTarget target = null;
    String title = "";
    String message = "";
    switch (option) {
      case SHOWCASE_PROFILE_SPLIT:
        target = new ProfileViewTarget(R.id.profile_recycler_view, this, 40, 40);
        title = getString(R.string.long_press_to_split_or_delete);
        message = getString(R.string.press_and_hold_on_the_background_to_split_or_delete);
        break;
    }
    if (target != null) {
      myShowcase = new ShowcaseView.Builder(this)
          .setTarget(target)
          .setStyle(R.style.CustomShowcaseTheme2)
          .setContentTitle(title)
          .setContentText("\n" + message)
          .setShowcaseDrawer(new JamorhamShowcaseDrawer(getResources(), getTheme(), 90, 14))
          .singleShot(oneshot ? option : -1)
          .build();
      myShowcase.setBackgroundColor(Color.TRANSPARENT);
      myShowcase.show();
    }
  } catch (Exception e) {
    Log.e(TAG, "Exception in showcase: " + e.toString());
  }
}
origin: NightscoutFoundation/xDrip

  @Override
  public void run() {
    if ((finaltarget != null) || (finalviewtarget != null)) {
      myShowcase = new ShowcaseView.Builder(finalactivity)
          .setTarget((finaltarget != null) ? finaltarget : finalviewtarget)
          .setStyle(R.style.CustomShowcaseTheme2)
          .setContentTitle(finaltitle)
          .setContentText("\n" + finalmessage)
          .setShowcaseDrawer(new JamorhamShowcaseDrawer(getResources(), getTheme(), 90, 14))
          .singleShot(oneshot ? option : -1)
          .build();
      myShowcase.setBackgroundColor(Color.TRANSPARENT);
      myShowcase.show();
    }
  }
}, 100);
origin: jamorham/xDrip-plus

    .build();
myShowcase.setBackgroundColor(Color.TRANSPARENT);
myShowcase.show();
origin: jamorham/xDrip-plus

  @Override
  public void run() {
    if ((finaltarget != null) || (finalviewtarget != null)) {
      myShowcase = new ShowcaseView.Builder(finalactivity)
          .setTarget((finaltarget != null) ? finaltarget : finalviewtarget)
          .setStyle(R.style.CustomShowcaseTheme2)
          .setContentTitle(finaltitle)
          .setContentText("\n" + finalmessage)
          .setShowcaseDrawer(new JamorhamShowcaseDrawer(getResources(), getTheme(), 90, 14))
          .singleShot(oneshot ? option : -1)
          .build();
      myShowcase.setBackgroundColor(Color.TRANSPARENT);
      myShowcase.show();
    }
  }
}, 100);
com.github.amlcurran.showcaseviewShowcaseViewsetBackgroundColor

Popular methods of ShowcaseView

  • isShowing
  • setButtonPosition
  • hide
  • setBlocksTouches
  • setOnShowcaseEventListener
  • setShouldCentreText
  • setTag
  • show
  • hideButton
  • postDelayed
  • setButtonText
  • setContentText
  • setButtonText,
  • setContentText,
  • setContentTitle,
  • setOnClickListener,
  • setShowcase,
  • setTarget,
  • setVisibility

Popular in Java

  • Creating JSON documents from java classes using gson
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • scheduleAtFixedRate (Timer)
    Schedules the specified task for repeated fixed-rate execution, beginning after the specified delay.
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • Hashtable (java.util)
    Hashtable is a synchronized implementation of Map. All optional operations are supported.Neither key
  • Locale (java.util)
    A Locale object represents a specific geographical, political, or cultural region. An operation that
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now