I seem to be having trouble with the linkify I am using in my Custom Adapter. For some reason I recieve the following stack track when I click on one of the links:
Turns out the answer to this is a lot simpler than I had originally thought. The problem was that when I was passing the context to my custom adapter I was passing the getApplicationContext() which is not the same as using the this identifier.
INCORRECT WAY:
Context mContext = getApplicationContext();
CustomAdapter mAdapter = new CustomAdapter(
mContext,
itemList);
CORRECT WAY:
CustomAdapter mAdapter = new CustomAdapter(
this,
itemList);