MartinC
MartinC

Reputation: 556

Icon size in preference screen for Amazon Kindle Fire HD?

I've got Android application running on Amazon Kindle Fire HD 8.9". It's got a full HD display with carousel home screen where icons are 675x675 px big. First problem I had was using standard small app icons which are stretched and blurry on this device. I solved it by adding new folder

drawable-large-mdpi

into /res folder and adding 675x675 icon in here. This works and app icon in carousel is nice, big and sharp.

Second problem is that this big icon appears also in the SettingsActivity which is based on PreferenceActivity (PreferenceScreen and PreferenceCategory used in layout xml). So, my question is how to use different (small one) icon here? I tried

android:icon

but that doesn't work. Anybody knows?

Upvotes: 1

Views: 8445

Answers (1)

Offbeatmammal
Offbeatmammal

Reputation: 8238

If you are sideloading/testing your .apk then it will only use the default small icon. If you deliver the app through the appstore then it will use the assets you specify in the developer portal for the launcher carousel

https://developer.amazon.com/post/Tx18I929G17TAAS/Submitting-Visual-Marketing-Assets-Marketing-Tip-of-the-Day-4.html

Upvotes: 0

Related Questions