Adapter.getView никогда не называется Android Studio - PullRequest
0 голосов
/ 15 марта 2020

К сожалению, мой метод getView никогда не вызывается с помощью специального адаптера, я думаю, что он должен что-то делать с потоком. Мне нужен этот поток, чтобы не получить исключение, потому что я не могу выполнять сетевую активность в основном потоке. Может быть, есть лучший вариант для этого. Это мой первый Project mit API, поэтому мне еще нужно многому научиться! Спасибо за ваши ответы!

    public class MainActivity extends AppCompatActivity {
    List<Schedule> races;
    startpage_lv_adapter adapter;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        startPage(2020);
        ListView lv = findViewById(R.id.raceList);
        lv.setAdapter(adapter);
        if(races == null){
            try {
                TimeUnit.SECONDS.sleep(3);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
        adapter = new startpage_lv_adapter(races, MainActivity.this);
        adapter.notifyDataSetChanged();
    }

    public void startPage(final int year) {
        Thread thread = new Thread(new Runnable() {
            @Override
            public void run() {
                Ergast ergast = new Ergast(year, 100, Ergast.DEFAULT_OFFSET);
                try {
                    races = ergast.getSchedules();
                } catch (IOException e) {
                    e.printStackTrace();
                }
                for (int i = 0; i < races.size(); i++) {
                    Schedule race = races.get(i);

                    if (Date.valueOf(race.getDate()).before(Calendar.getInstance().getTime())) {
                        races.set(i, null);
                    }
                }
                races.removeAll(Collections.singletonList(null));
                int i = races.size();
                if (races.size() == 0) {
                    startPage(year+1);
                }

            }
        });
        thread.start();



    }

}


public class startpage_lv_adapter extends BaseAdapter {
    private List<Schedule> races;
    private Context context;

    public startpage_lv_adapter(List<Schedule> races, Context context) {
        this.races = races;
        this.context = context;
    }

    @Override
    public int getCount() {
        return races.size();
    }

    @Override
    public Object getItem(int position) {
        return races.get(position);
    }

    @Override
    public long getItemId(int position) {
        return position;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        convertView = LayoutInflater.from(context).inflate(R.layout.listview_events_detail, parent, false);
        String basicURL = "https://restcountries.eu/rest/v2/name/";
        String country = races.get(position).getCircuit().getLocation().getCountry();
        String extendURL = "?fields=alpha2Code";
        try {
            HttpResponse<String> httpResponse = Unirest.get(basicURL+country+extendURL)
                    .asString();
             country = httpResponse.getBody().split(":")[1].replace('}', ' ').replace('"', ' ').trim();
        } catch (UnirestException e) {
            e.printStackTrace();
        }
        ImageView imageView = convertView.findViewById(R.id.img_countryFlag);
        TextView countryText = convertView.findViewById(R.id.text_countryName);
        TextView roundText = convertView.findViewById(R.id.text_roundNumber);
        basicURL = "https://www.countryflags.io/";
        extendURL = "/flat/64.png";
        Picasso.get().load(basicURL+country+extendURL);
        countryText.setText(races.get(position).getCircuit().getLocation().getCountry());
        roundText.setText("Round "+ position);
        return convertView;
    }
}

1 Ответ

0 голосов
/ 15 марта 2020

Вы должны установить адаптер после его инициализации (установить начальное значение) не раньше, поэтому переместите эту строку lv.setAdapter(adapter); после adapter = new startpage_lv_adapter(races, MainActivity.this);, мне интересно, как ваше приложение не обрабатывает sh: D

adapter = new startpage_lv_adapter(races, MainActivity.this);
lv.setAdapter(adapter);
...