I wanna change the three dots button on Android to other button which is an \"Add\" button. How to do it? I have changed set the button in my drawable, but it keep prompt th
Sorry I don't have enough reputation to post a comment. Here is the best answer I found, its one line of code:
myToolbar.setOverflowIcon(ContextCompat.getDrawable(getApplicationContext(),R.drawable.my_drawable));
The link for the original answer is here: https://stackoverflow.com/a/35790470/4575772