Jaewoong Eum
Jaewoong Eum
Are there any details about this issue?
Hi @yanioaioan, thanks for contributing to this PR. I'm just wondering if reading and writing to `SharedPreferences` must be run on a worker thread over Android 11. Or does only...
Hi, sorry for the late reply. You can implement it just using the custom adapter using the `MenuBaseAdapter`. Here is the reference for the [custom adapter](https://github.com/skydoves/PowerMenu/blob/master/app/src/main/java/com/skydoves/powermenudemo/customs/adapters/CenterMenuAdapter.java) on the demo project....
Hi, here is a solution now, but I will consider adding a new `setPadding()` function in the next release. ```java powerMenu.getMenuListView().setPadding(10, 10, 10, 10); ``` Thanks!
Hi, In the default menu, we cannot change the icon size now (but we can in a `CustomPowerMenu`). It seems to be added in the next release too. Thanks for...
Hey, @WenLonG12345 It's released a new version [2.1.5](https://github.com/skydoves/PowerMenu/releases/tag/2.1.5). You can use setIconSize, setIconPadding, setIconColor, setPadding functions now. Thanks!
Hi, it's released a new version `2.1.6`. Thank you for sharing your issues :)
Hi @Vivecstel, a new version `0.2.1` was released. Could you try to build your project with this version? Thanks!
Hey, thank you for checking this. What about `0.2.2-SNAPSHOT`?
Hi, It seems your device does not support NFC manager, so the `NfcManager.getDefaultAdapter` would return null. https://developer.android.com/reference/android/nfc/NfcManager.html It should be used null-check like your issue. ```kotlin nAdapter?.enableForegroundDispatch(this, pIntent, filters, null);...