mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-10 06:14:20 +00:00
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>
25 lines
822 B
XML
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> |