Click here to Skip to main content
15,900,378 members

Comments by Member 12731696 (Top 10 by date)

Member 12731696 15-Oct-20 5:38am View    
Hi Sandeep ,

I am making a post request to my django server where it only accepts the access_token
Member 12731696 17-Jan-19 11:34am View    
I was following this tutorial. I was trying to implement in that way..
https://proandroiddev.com/8-steps-to-implement-paging-library-in-android-d02500f7fffe
Member 12731696 14-Jan-19 6:22am View    
Hi David
Yes, at that line i am creatig a long value ,i.e , the key

long nextKey = (params.key == total_items)? null : params.key+1;
Member 12731696 17-Apr-17 2:39am View    
I tried Picasso library for setting the views in my CustomPagerAdapter class, but the problem still remains. :(
Member 12731696 17-Apr-17 1:14am View    
The creation of .jpg files is done without any problem. Initially i thought the creation of the files itself would be causing the load on the main thread, and that's why i included the creation in AsyncTask. However, even after this, i get the message 'Too much load on the main Thread' in my logcat and (now confirmed) it's due to the Adapter. The images taken are of approx 7-8 MB in size. I only want to make the adapter run in a different thread than the main.