2018-09-02 19:00:45 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/linearlayout_view_loading_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-09-07 20:22:31 +02:00
|
|
|
android:gravity="top"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:visibility="gone">
|
2018-09-02 19:00:45 +02:00
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progressbar_loading"
|
2018-09-07 20:22:31 +02:00
|
|
|
style="@android:style/Widget.ProgressBar.Horizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:indeterminate="true"
|
|
|
|
android:indeterminateTintMode="src_atop"
|
|
|
|
android:indeterminateTint="@color/bg_primary_blue_dark"/>
|
2018-09-02 19:00:45 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textview_loading_description"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:text="@string/view_loading_description"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
android:visibility="gone" />
|
2018-09-07 20:22:31 +02:00
|
|
|
|
2018-09-02 19:00:45 +02:00
|
|
|
</LinearLayout>
|