Commit 2d0d6aee authored by iman Fauzi's avatar iman Fauzi

Merge branch 'dev' into cart

parents 8cecb337 8427f9af
......@@ -13,6 +13,9 @@ public class SplashScreen extends AppCompatActivity {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash);
new Handler(Looper.getMainLooper()).postDelayed(()->{
startActivity(new Intent(SplashScreen.this, MainActivity.class));
finish();
}, 3000);
}
}
......@@ -64,6 +64,7 @@ public class PaymentAdapter extends RecyclerView.Adapter<PaymentAdapter.ViewHold
// .into(imageView);
}
@Override
public int getItemCount() {
return paymentResponses.size();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment