26 lines
No EOL
952 B
XML
26 lines
No EOL
952 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:padding="15dp">
|
|
|
|
<ProgressBar
|
|
android:id="@+id/loading_progress_bar"
|
|
style="@style/Widget.AppCompat.ProgressBar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:indeterminate="true"
|
|
android:visibility="gone"
|
|
tools:visibility="visible" />
|
|
|
|
<!--ERROR PANEL-->
|
|
<include
|
|
android:id="@+id/error_panel"
|
|
layout="@layout/error_retry"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/video_item_detail_error_panel_margin"
|
|
android:visibility="gone"
|
|
tools:visibility="visible" />
|
|
</FrameLayout> |