[android-developers] RecyclerView Causing NullPointer on Individual CardView

2016-05-24 Thread Troy Chuinard
I am using a RecylerView to populate CardView items. I am noticing that the RecyclerView is generating a NullPointer here, as for some reason the RecyclerView references the parent view and not the individual CardView. I believe the error is occurring here: public ViewHolder(View v) {

[android-developers] ViewPager Not Loading in Genymotion Emulator - Android 4.2.2.

2016-02-24 Thread Troy Chuinard
I have recently been testing devices using Amazon Web Services Device Farm. I noticed that on some devices, my activity loads but the fragment attached to the activity does not load. I have identified Android 4.2.2 as one of the common variables for the issue, but do not want to say that it is o

[android-developers] How to Handle JsonSyntaxException when Receiving Response from GAE

2016-01-28 Thread Troy Chuinard
I am trying to replicate the Google App Engine Servlets module [here][1] using Retrofit instead of AsyncTask. I find it odd, but apparently Retrofit 2.0 does not support connections to Google App Engine, as stated [here][2] in the issues of the GitHub repository. As a result, I am using Retro

[android-developers] Trying to Connect to Google App Engine with Retrofit

2016-01-27 Thread Troy Chuinard
I have successfully followed the Google tutorial here , using the Android Studio Servlets module to connect to Google App Engine. I was able to see the Toast message on my device, meaning I successfully c