1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#000000">
- <ProgressBar
- android:id="@+id/hj_progress"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:indeterminate="false"
- android:indeterminateDrawable="@drawable/hj_progress"
- />
- <FrameLayout
- android:id="@+id/hj_surface_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- </FrameLayout>
- <ImageView
- android:id="@+id/hj_iv_volume"
- android:layout_width="25dp"
- android:layout_height="25dp"
- android:layout_marginLeft="20dp"
- android:layout_marginTop="10dp"
- android:src="@drawable/hj_unmute"
- />
- <ImageView
- android:id="@+id/hj_iv_start"
- android:layout_width="10dp"
- android:layout_height="10dp"
- android:visibility="invisible"
- />
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:layout_alignParentRight="true"
- android:src="@drawable/hj_trade_logo"
- />
- </RelativeLayout>
|