mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-01-04 00:57:39 +00:00
18 lines
521 B
XML
18 lines
521 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_reboot"
|
|
android:icon="@drawable/ic_restart"
|
|
android:title="@string/reboot"
|
|
app:showAsAction="ifRoom" />
|
|
|
|
<item
|
|
android:id="@+id/action_settings"
|
|
android:icon="@drawable/ic_settings_md2"
|
|
android:title="@string/settings"
|
|
app:showAsAction="ifRoom" />
|
|
|
|
</menu>
|