How to make drop-down menus with icons like Telegram app:
Asked
Active
Viewed 564 times
1
-
3Does this answer your question? [Android menu item with both icon and text together when showAsAction is never](https://stackoverflow.com/questions/33777318/android-menu-item-with-both-icon-and-text-together-when-showasaction-is-never) – Mohamed AbdelraZek Jun 21 '20 at 13:38
1 Answers
0
Use in your menu xml file "icon":
<item
android:id="@+id/call"
android:icon="@drawable/ic_call"
android:title="@string/call" />

Alexey Bilousov
- 116
- 6