mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
52 lines
1.6 KiB
XML
52 lines
1.6 KiB
XML
<menu
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
>
|
|
|
|
<item
|
|
android:id="@+id/connectStatusImage"
|
|
android:contentDescription="@string/connection_status"
|
|
android:icon="@drawable/cloud_off"
|
|
app:iconTint="@color/toolbarText"
|
|
android:title="@string/disconnected"
|
|
app:showAsAction="ifRoom"
|
|
/>
|
|
|
|
<item
|
|
android:id="@+id/debug"
|
|
android:title="@string/debug_panel"
|
|
app:showAsAction="withText" />
|
|
<item
|
|
android:id="@+id/stress_test"
|
|
android:checkable="true"
|
|
android:checked="false"
|
|
android:title="@string/protocol_stress_test" />
|
|
<item
|
|
android:id="@+id/radio_config"
|
|
app:showAsAction="withText"
|
|
android:title="@string/device_settings" />
|
|
<item
|
|
android:id="@+id/save_messages_csv"
|
|
app:showAsAction="withText"
|
|
android:title="@string/save_messages" />
|
|
<item
|
|
android:id="@+id/theme"
|
|
android:title="@string/theme"
|
|
app:showAsAction="withText" />
|
|
<item
|
|
android:id="@+id/preferences_language"
|
|
android:title="@string/preferences_language"
|
|
app:showAsAction="withText" />
|
|
<item
|
|
android:id="@+id/show_intro"
|
|
android:title="@string/intro_show"
|
|
app:showAsAction="withText" />
|
|
<item
|
|
android:id="@+id/preferences_quick_chat"
|
|
android:title="@string/quick_chat"
|
|
app:showAsAction="withText" />
|
|
<item
|
|
android:id="@+id/about"
|
|
android:title="@string/about"
|
|
app:showAsAction="withText" />
|
|
</menu>
|