Super simple way for Android to realize the native sideslip menu
Let's take a look at the renderings first
When you click the menu to change the icon, for example, click happy, and the home page will change into a smiling face. This implementation process is super simple
You need to use toolbar and drawablelayout, two relatively new controls
First, write three XML layout files. The layout file here is embedded with the include tag. The code is as follows
headbar_ toolbar. xml
my_ drawablelayout. xml
main_ activity. xml
How to apply to java files [one file is done]
About butterknife annotation and style
Butterknife is directly configured in the gradle file as follows [fill what is missing]
Style [the color style of the return key is modified in the style file]
summary
In fact, we often don't know how to implement it when using third-party controls. Using native controls can enable us to better understand an interaction or the principle of realizing a function, which is conducive to making apps with excellent performance and interaction. Above is the whole content of this article, Hope to bring some help to everyone's work or study.