mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-08 05:11:51 +08:00
20 lines
656 B
XML
20 lines
656 B
XML
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
<item
|
|
android:id="@+id/action_browse"
|
|
android:icon="@drawable/ic_baseline_folder_open_24"
|
|
android:title="@string/browse"
|
|
app:showAsAction="always|withText" />
|
|
<item
|
|
android:id="@+id/action_install"
|
|
android:icon="@drawable/ic_baseline_add_24"
|
|
android:title="@string/install"
|
|
app:showAsAction="always|withText" />
|
|
<item
|
|
android:id="@+id/action_settings"
|
|
android:icon="@drawable/ic_baseline_settings_24"
|
|
android:title="@string/app_settings"
|
|
app:showAsAction="always|withText"
|
|
android:visible="false" />
|
|
</menu>
|