mirror of
https://github.com/skyline-emu/skyline.git
synced 2025-01-23 23:57:56 +03:00
14 lines
513 B
XML
14 lines
513 B
XML
|
<?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:icon="@drawable/ic_settings"
|
||
|
android:title="@string/settings"
|
||
|
app:showAsAction="ifRoom"/>
|
||
|
<item
|
||
|
android:id="@+id/action_refresh"
|
||
|
android:icon="@drawable/ic_refresh"
|
||
|
android:title="@string/refresh"
|
||
|
app:showAsAction="ifRoom"/>
|
||
|
</menu>
|