123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/main_head"
- android:orientation="vertical" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:padding="5dip" >
- <TextView
- android:id="@+id/txt_time"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:textColor="@color/txt_general_bg"
- android:textSize="18sp" />
- </RelativeLayout>
- <include
- android:layout_width="match_parent"
- android:layout_height="0dip"
- android:layout_weight="1"
- layout="@layout/video_session"
- android:gravity="center_vertical" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:orientation="horizontal" >
- <Button
- android:id="@+id/btn_endsession"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:background="@drawable/end_session_bg"
- android:gravity="center"
- android:padding="10dip"
- android:text="@string/end_session"
- android:textColor="@color/dancen"
- android:textSize="18sp" />
- <ImageView
- android:id="@+id/img_switch"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginRight="8dip"
- android:layout_weight="1"
- android:background="@drawable/btn_switchvideo_background"
- android:src="@mipmap/switchvideo"
- android:visibility="invisible" />
- </LinearLayout>
- </LinearLayout>
|