Fix white on white text display
CHANGELOG.md
13 | 13 | * Fix a crash on notification on older devices, caused by the use of a vector | |
14 | 14 | icon in the notification, which was not supported. | |
15 | 15 | * Fix default radical button size which was too small. | |
16 | + | * Fix white on white text display on some older devices. | |
16 | 17 | ||
17 | 18 | ### Features | |
18 | 19 |
app/src/main/java/eu/lepiller/nani/DictionaryActivity.java
45 | 45 | final SwipeRefreshLayout refresher = findViewById(R.id.dictionary_refresh_layout); | |
46 | 46 | ||
47 | 47 | dictionaries = DictionaryFactory.getDictionnaries(getApplicationContext()); | |
48 | - | adapter = new DictionariesAdapter(getApplicationContext(), dictionaries); | |
48 | + | adapter = new DictionariesAdapter(this, dictionaries); | |
49 | 49 | list_view.setAdapter(adapter); | |
50 | 50 | ||
51 | 51 | if(dictionaries.size() == 0) { |