mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
* Synced the string used for ChUtil and AirUtilTX in the NodeInfo and Device Metrics. * Refactored NodeDetails to Metrics. * Added string resources for "Hops Away".
39 lines
No EOL
1.4 KiB
XML
39 lines
No EOL
1.4 KiB
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">
|
|
<group android:id="@+id/group_remote">
|
|
<item
|
|
android:id="@+id/direct_message"
|
|
android:title="@string/direct_message"
|
|
app:showAsAction="withText" />
|
|
<item
|
|
android:id="@+id/request_position"
|
|
android:title="@string/request_position"
|
|
app:showAsAction="withText" />
|
|
<item
|
|
android:id="@+id/traceroute"
|
|
android:title="@string/traceroute"
|
|
app:showAsAction="withText" />
|
|
<item
|
|
android:id="@+id/ignore"
|
|
android:checkable="true"
|
|
android:checked="false"
|
|
android:title="@string/ignore" />
|
|
<item
|
|
android:id="@+id/remove"
|
|
android:title="@string/remove"
|
|
app:showAsAction="withText" />
|
|
</group>
|
|
<group android:id="@+id/group_admin">
|
|
<item
|
|
android:id="@+id/remote_admin"
|
|
android:title="@string/device_settings"
|
|
app:showAsAction="withText" />
|
|
</group>
|
|
<group android:id="@+id/group_both">
|
|
<item
|
|
android:id="@+id/metrics"
|
|
android:title="@string/metrics"
|
|
app:showAsAction="withText" />
|
|
</group>
|
|
</menu> |