2023-11-29 15:51:38 +05:30
|
|
|
<!-- SlideshowFragment layout -->
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-05-30 08:48:59 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2023-11-29 15:51:38 +05:30
|
|
|
tools:context="com.example.hpostesting.presentation.dashboard.SlideshowFragment">
|
2023-05-30 08:48:59 +05:30
|
|
|
|
|
|
|
|
<TextView
|
2023-11-29 15:51:38 +05:30
|
|
|
android:visibility="gone"
|
2023-05-30 08:48:59 +05:30
|
|
|
android:id="@+id/text_slideshow"
|
2023-06-08 19:27:34 +05:30
|
|
|
style="@style/title1"
|
2023-05-30 08:48:59 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2023-06-08 19:27:34 +05:30
|
|
|
android:layout_margin="24dp"
|
2023-05-30 08:48:59 +05:30
|
|
|
android:textAlignment="center"
|
|
|
|
|
android:textSize="20sp"
|
2023-06-08 19:27:34 +05:30
|
|
|
android:text="@string/to_be_launched_in_next_version_of_the_app"
|
2023-05-30 08:48:59 +05:30
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2023-11-29 15:51:38 +05:30
|
|
|
|
|
|
|
|
<!-- Language Settings -->
|
|
|
|
|
<FrameLayout
|
|
|
|
|
android:id="@+id/fragment_container"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="0dp"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/text_slideshow"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|