-
-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Shows if no offline messages are saved
Signed-off-by: rapterjet2004 <[email protected]>
- Loading branch information
1 parent
fe8d89e
commit 3cb67e4
Showing
7 changed files
with
77 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
~ Nextcloud Talk - Android Client | ||
~ | ||
~ SPDX-FileCopyrightText: 2024 Julius Linus <[email protected]> | ||
~ SPDX-License-Identifier: GPL-3.0-or-later | ||
--> | ||
<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:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
|
||
<ImageView | ||
android:id="@+id/lobby_image_view" | ||
android:layout_width="64dp" | ||
android:layout_height="64dp" | ||
android:layout_above="@id/lobby_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:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_centerInParent="true" | ||
android:layout_margin="@dimen/standard_margin" | ||
android:text="@string/no_offline_messages_saved" | ||
android:textAlignment="center" | ||
android:textColor="@color/grey_600" | ||
android:textSize="16sp" | ||
android:autoLink="web" /> | ||
|
||
</RelativeLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters