mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-01-07 16:57:39 +03:00
25 lines
800 B
XML
25 lines
800 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:id="@+id/jitsi_layout"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:background="@android:color/black">
|
||
|
|
||
|
<!-- Note: A org.jitsi.meet.sdk.JitsiMeetView will be added here -->
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/jitsi_progress_layout"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center"
|
||
|
android:gravity="center"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<ProgressBar
|
||
|
android:layout_width="40dp"
|
||
|
android:layout_height="40dp"
|
||
|
android:indeterminate="true" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</FrameLayout>
|