Android with Intent and Custom Listview

You have to use your activity context and use that context for create new activity.
Make one constructor for initialize context.

public AdapterCustom(Context context) {
          this.context = context;     
     }

Leave a Comment