[Solved] TextView isn’t updated with JSON Response


GetYouTubeUserCommentsTask task = new GetYouTubeUserCommentsTask(null,
                viewCount); // passing null. 

And you have

public GetYouTubeUserCommentsTask(Handler replyTo, String username) {
        this.replyTo = replyTo; // replyTo is null
        this.username = username;
    }

replyTo is null. You need to Initialize the handler replyTo

10

solved TextView isn’t updated with JSON Response