|
|
@@ -145,9 +145,20 @@ public class Tutorial {
|
|
|
}
|
|
|
|
|
|
private void showTutorialBucketUpdate(IEventListener listener) {
|
|
|
+ Animation fadeOut = AnimationUtils.loadAnimation(activity, R.anim.fade_out);
|
|
|
view = inflater.inflate(R.layout.tutorial_bucket_list_update, null);
|
|
|
frameLayout.addView(view);
|
|
|
view.setClickable(true);
|
|
|
+
|
|
|
+ new Handler().postDelayed(new Runnable() {
|
|
|
+ @Override
|
|
|
+ public void run() {
|
|
|
+
|
|
|
+ view.findViewById(R.id.tutorial_bucket_list_success).startAnimation(fadeOut);
|
|
|
+ view.findViewById(R.id.tutorial_bucket_list_success).setVisibility(View.GONE);
|
|
|
+ }
|
|
|
+ }, 2000);
|
|
|
+
|
|
|
new Handler().postDelayed(new Runnable() {
|
|
|
@Override
|
|
|
public void run() {
|