How to disable/hide three-dot indicator(Option menu indicator) on ICS handsets

后端 未结 19 1757
闹比i
闹比i 2020-12-04 19:29

How to disable/hide three-dot indicator(Option menu indicator) on ICS handsets which does\'t have menu button. ?

I am running application as

相关标签:
19条回答
  • 2020-12-04 20:04

    Copy paste this code in main.xml in menu folder you just need to make the item android:visible="false"

        <?xml version="1.0" encoding="utf-8"?>
    <menu xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto">
        <item
            android:id="@+id/action_settings"
            android:orderInCategory="100"
            android:visible="false"
            android:title="@string/action_settings"
            app:showAsAction="never" />
    </menu>
    
    0 讨论(0)
提交回复
热议问题