mirror of
https://gitlab.futo.org/videostreaming/grayjay.git
synced 2026-05-16 04:52:39 +02:00
22 lines
865 B
XML
22 lines
865 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:gravity="center_vertical"
|
|
android:layout_marginBottom="4dp"
|
|
android:orientation="vertical"
|
|
android:id="@+id/container"
|
|
android:background="#77000000"
|
|
android:elevation="4dp">
|
|
<ImageView
|
|
android:id="@+id/loader"
|
|
android:layout_width="80dp"
|
|
android:layout_height="80dp"
|
|
app:srcCompat="@drawable/ic_loader_animated"
|
|
android:layout_gravity="top|center_horizontal"
|
|
android:alpha="0.7"
|
|
android:layout_marginTop="80dp"
|
|
android:layout_marginBottom="80dp"
|
|
android:contentDescription="@string/loading" />
|
|
</FrameLayout> |