Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PodcastFeedArrayAdapter.java « ListView « owncloudnewsreader « luhmer « de « java « main « src « News-Android-App - github.com/nextcloud/news-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d87363ff2be49180ae37fcaa26e3c8df223f01dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package de.luhmer.owncloudnewsreader.ListView;

import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.TextView;

import androidx.annotation.NonNull;

import org.greenrobot.eventbus.EventBus;

import de.luhmer.owncloudnewsreader.R;
import de.luhmer.owncloudnewsreader.databinding.PodcastFeedRowBinding;
import de.luhmer.owncloudnewsreader.events.podcast.PodcastFeedClicked;
import de.luhmer.owncloudnewsreader.model.PodcastFeedItem;

public class PodcastFeedArrayAdapter extends ArrayAdapter<PodcastFeedItem> {

    private final LayoutInflater inflater;
    private final EventBus eventBus;

    public PodcastFeedArrayAdapter(Context context, PodcastFeedItem[] values) {
        super(context, R.layout.podcast_feed_row, values);
        inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        eventBus = EventBus.getDefault();
    }

    @Override
    public View getView(final int position, View view, ViewGroup parent) {
        ViewHolder holder;
        if (view != null) {
            holder = (ViewHolder) view.getTag();
        } else {
            PodcastFeedRowBinding binding = PodcastFeedRowBinding.inflate(inflater, parent, false);
            view = binding.getRoot();
            holder = new ViewHolder(binding);
            binding.getRoot().setTag(holder);
        }

        final PodcastFeedItem feedItem = getItem(position);

        holder.binding.tvTitle.setText(feedItem.mFeed.getFeedTitle());
        holder.binding.tvBody.setText(feedItem.mPodcastCount + " Podcasts available");

        view.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                PodcastFeedClicked podcastFeedClicked = new PodcastFeedClicked();
                podcastFeedClicked.position = position;
                eventBus.post(podcastFeedClicked);
            }
        });

        return view;
    }


    static class ViewHolder {
        @NonNull final PodcastFeedRowBinding binding;

        public ViewHolder(@NonNull PodcastFeedRowBinding binding) {
            this.binding = binding;
        }
    }
}