1
0
mirror of https://github.com/akaessens/NoFbEventScraper synced 2025-06-05 23:29:13 +02:00

use scroll view instead of card, re-add maps intent and fix soft keyboard

This commit is contained in:
akaessens
2020-09-05 17:14:06 +02:00
parent 85e9c15f5e
commit 56300d78a3
6 changed files with 56 additions and 81 deletions

View File

@ -44,7 +44,7 @@ public class FbScraper extends AsyncTask<Void, Void, Void> {
FbScraper(WeakReference<MainActivity> main, String input_url) {
this.main = main;
this.input_url = input_url;
this.events = createEventList(0);
this.events = createEventList();
}
/**
@ -228,6 +228,10 @@ public class FbScraper extends AsyncTask<Void, Void, Void> {
FbEvent event = new FbEvent(url, name, start_date, end_date, description, location, image_url);
this.events.add(event);
this.events.add(event);
this.events.add(new FbEvent());
this.events.add(event);
this.events.add(event);
} catch (URISyntaxException | MalformedURLException e) {
e.printStackTrace();