Fix crash when looking for details on an iconless asset
This commit is contained in:
parent
6a1c2f032b
commit
caa64fda6f
BIN
.idea/caches/build_file_checksums.ser
generated
BIN
.idea/caches/build_file_checksums.ser
generated
Binary file not shown.
@ -135,6 +135,8 @@ public class CurrencyDetailsActivity extends AppCompatActivity {
|
||||
Objects.requireNonNull(getSupportActionBar()).setDisplayOptions(ActionBar.DISPLAY_SHOW_HOME |
|
||||
ActionBar.DISPLAY_SHOW_TITLE | ActionBar.DISPLAY_HOME_AS_UP | ActionBar.DISPLAY_USE_LOGO);
|
||||
|
||||
if(currency.getIcon() != null)
|
||||
{
|
||||
Bitmap result = Bitmap.createBitmap(150, 150, currency.getIcon().getConfig());
|
||||
|
||||
Paint paint = new Paint();
|
||||
@ -153,6 +155,7 @@ public class CurrencyDetailsActivity extends AppCompatActivity {
|
||||
, false)));
|
||||
}
|
||||
}
|
||||
}
|
||||
/*for(int i = 0; i < dataChartList.size(); i++)
|
||||
{*/
|
||||
/*if(counter == offset)
|
||||
|
Loading…
Reference in New Issue
Block a user