2016-08-26 15 views
-1

ショーケースビュー 'GOT IT'にボタンを追加する必要があります。ボタン 'GOT IT'をここに表示するには?ショーケースビュー 'GOT IT'にボタンを追加する必要があります

public voidshowcase() { 
    new MaterialShowcaseView.Builder(this) 
     .setTarget(accident) 

     .setDismissText("GOT IT") 
     .setDismissTextColor(Color.parseColor("#404040")) 
     .setShapePadding(140) 
     .setContentText("Touch the yellow fab below to see more services") 
     .setDelay(withDelay) 
// optional but starting animations immediately in onCreate can make them choppy 
     .singleUse(SHOWCASE_ID) // provide a unique ID used to ensure it is only shown once 
     .show(); 
} 
+0

あなたはshowCaseViewライブラリについては取っていますか? – Nidhi

+0

あなたが使用しているライブラリの名前とリンクを常に記述してください。 – Sufian

+0

マテリアルショーケースビューライブラリ – felix

答えて

0

これを試してみてください:

private ShowcaseView showcaseView = new ShowcaseView.Builder(getActivity()) 
        .setTarget(new ViewTarget(diagnostics)) 
        .setOnClickListener(counterClick) 
        .setStyle(R.style.CustomShowcaseTheme) 
        .build(); 



      showcaseView.setButtonText(getString(R.string.next)); 
      showcaseView.forceTextPosition(ShowcaseView.BELOW_SHOWCASE); 
      showcaseView.setContentTitle("Search and book Diagnostics"); 
関連する問題