S.Masoud_Emamian
S.Masoud_Emamian
I solved this problem by this way: RequestQueue queue = Volley.newRequestQueue(context); queue.getCache().clear(); StringRequest myReq = new StringRequest(Request.Method.POST, VolleyConnector.url, createMyReqSuccessListener(), createMyReqErrorListener()) { protected Map getParams() throws com.android.volley.AuthFailureError { Map params =...
I have the same problem..
Solved : ``` new Handler().postDelayed(new Runnable() { @Override public void run() { mViewPager.setCurrentItem(3); } },500); ```
solved: https://github.com/kmshack/Android-ParallaxHeaderViewPager/issues/9