Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rl_load_failed_layout"
android:background="#88000000"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/im_error_icon"
android:background="@drawable/community_bg_content"
android:layout_width="@dimen/dp200"
android:layout_height="@dimen/dp200"
android:layout_centerInParent="true"/>
<TextView
android:textSize="@dimen/dp23"
android:textColor="@color/tab_text_color"
android:id="@+id/tv_load_failed_hint"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dp20"
android:text="@string/video_failed"
android:layout_below="@+id/im_error_icon"
android:layout_centerHorizontal="true"/>
</RelativeLayout>