123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/video_session"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- <SurfaceView
- android:id="@+id/surface_remote"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center" />
- <ProgressBar
- android:id="@+id/progress_remote"
- style="@android:style/Widget.ProgressBar.Horizontal"
- android:layout_width="match_parent"
- android:layout_height="5dip"
- android:layout_gravity="bottom"
- android:max="100" />
- <LinearLayout
- android:id="@+id/frame_local_area"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="bottom|right"
- android:background="@drawable/video_bg"
- android:orientation="vertical"
- android:padding="3dip" >
- <SurfaceView
- android:id="@+id/surface_local"
- android:layout_width="match_parent"
- android:layout_height="0dip"
- android:layout_gravity="center"
- android:layout_weight="1" />
- <ProgressBar
- android:id="@+id/progress_local"
- style="?android:attr/progressBarStyleHorizontal"
- android:layout_width="match_parent"
- android:layout_height="5dip"
- android:max="100" />
- </LinearLayout>
- </FrameLayout>
|