Skip to content

Commit

Permalink
fix Duplicate ids in xml
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
  • Loading branch information
mahibi committed Dec 3, 2024
1 parent cb01b1f commit a0d6442
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/src/main/res/layout/no_saved_messages_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,23 @@
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/lobby_view"
android:id="@+id/offline_view"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ImageView
android:id="@+id/lobby_image_view"
android:id="@+id/offline_image_view"
android:layout_width="64dp"
android:layout_height="64dp"
android:layout_above="@id/lobby_text_view"
android:layout_above="@id/offline_text_view"
android:layout_centerHorizontal="true"
android:layout_margin="@dimen/margin_between_elements"
android:contentDescription="@string/nc_lobby"
android:src="@drawable/ic_signal_wifi_off_white_24dp"
app:tint="@color/grey_600" />

<TextView
android:id="@+id/lobby_text_view"
android:id="@+id/offline_text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
Expand Down

0 comments on commit a0d6442

Please sign in to comment.