How to make a button in the upper right corner of 3 points, when clicked, the button "help" will come out, and this button in turn will display a help dialog box.
Now in my application the theme is "Theme.AppCompat.Light.DarkActionBar", and by default there is no such button.
<application android:allowBackup="true" android:icon="@mipmap/light" android:label="@string/app_name" android:roundIcon="@mipmap/light" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity" android:icon="@mipmap/light" android:screenOrientation="portrait"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> <item name="colorPrimary">#e5a840</item> <item name="colorPrimaryDark">#c47505</item> <item name="colorAccent">#440000</item> </style>