Add splash for initial sync

This commit is contained in:
ganfra 2018-11-02 10:30:59 +01:00
parent 455b860f06
commit 1cc19a90bc
3 changed files with 24 additions and 6 deletions

View File

@ -4,8 +4,10 @@ import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import com.bumptech.glide.Glide
import im.vector.riotredesign.R
import im.vector.riotredesign.core.platform.RiotFragment
import kotlinx.android.synthetic.main.fragment_loading_room_detail.*

class LoadingRoomDetailFragment : RiotFragment() {

@ -20,5 +22,12 @@ class LoadingRoomDetailFragment : RiotFragment() {
return inflater.inflate(R.layout.fragment_loading_room_detail, container, false)
}

override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
Glide.with(this)
.load(R.drawable.riot_splash)
.into(animatedLogoImageView)
}


}

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -4,17 +4,26 @@
android:layout_width="match_parent"
android:layout_height="match_parent">

<!-- 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"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:layout_centerInParent="true"
android:indeterminate="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
app:layout_constraintTop_toBottomOf="@id/animatedLogoImageView" />

</android.support.constraint.ConstraintLayout>
</android.support.constraint.ConstraintLayout>