-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();
}
あなたはshowCaseViewライブラリについては取っていますか? – Nidhi
あなたが使用しているライブラリの名前とリンクを常に記述してください。 – Sufian
マテリアルショーケースビューライブラリ – felix