BayernMessenger/app/src/main/res/layout/fragment_loading_room_detai...

30 lines
1.2 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
2018-11-02 09:30:59 +00:00
<!-- Note: Gif will be loaded by the code -->
<ImageView
android:id="@+id/animatedLogoImageView"
android:layout_width="240dp"
android:layout_height="240dp"
app:layout_constraintBottom_toTopOf="@+id/progressBar"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_chainStyle="packed" />
<ProgressBar
android:id="@+id/progressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2018-11-02 09:30:59 +00:00
android:layout_centerInParent="true"
android:indeterminate="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
2018-11-02 09:30:59 +00:00
app:layout_constraintTop_toBottomOf="@id/animatedLogoImageView" />
2018-11-02 09:30:59 +00:00
</android.support.constraint.ConstraintLayout>