Files
comaps/android/app/src/main/res/layout/item_charging_sockets.xml
Séverin Lemaignan d168855ef5 [android] add support for editing charging stations details
While here, uncluttered a little the charging station editor,
removing fields like the POI address which is basically irrelevant for
charging stations.

Signed-off-by: Séverin Lemaignan <severin@guakamole.org>
2025-10-12 20:17:06 +02:00

25 lines
822 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<GridLayout
android:id="@+id/socket_grid_editor"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:columnCount="3"
android:padding="0dp"
android:alignmentMode="alignMargins"
android:columnOrderPreserved="false">
<include layout="@layout/button_new_item" />
</GridLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/edit_socket_info_tooltip"
android:textAppearance="?android:attr/textAppearanceSmall" />
</LinearLayout>