How to transfer data from one activity to another and set it to the textview?
This is my intent:
Intent intent=new Intent(v.getContext(),FinalResultActivity.class);
        intent.putExtra("questions_count", questions_count);
        intent.putExtra("questions_correct", questions_correct);
        intent.putExtra("questions_score", questions_score);
        intent.putExtra("questions_correct_list", questions_correct_list);
        v.getContext().startActivity(intent);
I want to pass questions_score to another activity and set it to the textview.
 
     
     
     
    