On chromebooks there is back button in the window border. But this button normally shown in actionbar in android apps. I just want to hide this system button for chromebooks to avoid duplications. I see that Google Play app is managed to do it somehow.
Set this preference inside the activity tag
<meta-data android:name="WindowManagerPreference:SuppressWindowControlNavigationButton" android:value="true" />
For more information, please check out ChromeOS.dev and their help article on this topic.