-
-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hide replacement view when there is no replacement set
Signed-off-by: sowjanyakch <[email protected]>
- Loading branch information
1 parent
5290ab1
commit 583e0eb
Showing
3 changed files
with
19 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,19 @@ | |
~ SPDX-FileCopyrightText: 2024 Sowjanya Kota <[email protected]> | ||
~ SPDX-License-Identifier: GPL-3.0-or-later | ||
--> | ||
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="match_parent" | ||
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
android:layout_height="150dp" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:id="@+id/out_of_office_view"> | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content"> | ||
|
||
<ScrollView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
app:layout_constraintTop_toTopOf="parent" | ||
android:id="@+id/out_of_office_view" | ||
app:layout_constraintHeight_min="0dp" | ||
app:layout_constraintHeight_max="150dp"> | ||
|
||
<LinearLayout | ||
android:layout_width="match_parent" | ||
|
@@ -45,6 +52,7 @@ | |
tools:text="Dec 5, 2024 - Dec 15, 2024"/> | ||
|
||
<LinearLayout | ||
android:id="@+id/userAbsenceReplacement" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:orientation="horizontal" | ||
|
@@ -101,4 +109,5 @@ | |
tools:text="Hi, I am out of office this week. Please contact ....., ..........write very very very very very very very very very very very very very very very long message..................................................................................................................................if you have any issues."/> | ||
</LinearLayout> | ||
</LinearLayout> | ||
</ScrollView> | ||
</ScrollView> | ||
</androidx.constraintlayout.widget.ConstraintLayout> |