how to set progress bar when recycler view is clicked
问题 I have an app which gets data from json and displays it on recycler view and when each recycler view is clicked it opens a new activity to show full content. all i want to know is how to show a progress dialog befrore the second activity shows thanks. Here is my code public CustomViewHolder(View view, Context ctx, ArrayList<FeedItem> feeditem) { super(view); view.setOnClickListener(this); this.ctx = ctx; this.feeditem = feeditem; this.imageView = (ImageView) view.findViewById(R.id.thumbnail);