コード例 #1
0
ファイル: ShowcaseView.java プロジェクト: BeniG/ShowcaseView
 /**
  * Make this ShowcaseView hide when the user touches outside the showcased area. This enables
  * {@link #doNotBlockTouches()} as well.
  *
  * <p>By default, the ShowcaseView doesn't hide on touch.
  */
 public Builder hideOnTouchOutside() {
   showcaseView.setBlocksTouches(true);
   showcaseView.setHideOnTouchOutside(true);
   return this;
 }