12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="@color/black">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_centerInParent="true">
- <SurfaceView
- android:id="@+id/videoView"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- </RelativeLayout>
- <ImageView
- android:id="@+id/switch_cameras"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:contentDescription="@string/empty"
- android:padding="10dip"
- android:src="@drawable/nim_cameras_selector" />
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_marginLeft="10dip"
- android:layout_marginRight="10dip"
- android:layout_marginTop="10dip"
- android:background="@color/transparent"
- android:orientation="horizontal"
- android:paddingBottom="5dip"
- android:paddingLeft="10dip"
- android:paddingRight="10dip"
- android:paddingTop="5dip" >
- <ImageView
- android:id="@+id/recording_id"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:background="@drawable/nim_record_start"
- android:contentDescription="@string/empty" />
- <TextView
- android:id="@+id/record_times"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="8dp"
- android:singleLine="true"
- android:text="00:00"
- android:textColor="@color/white" />
- </LinearLayout>
- <ImageView
- android:id="@+id/record_btn"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:layout_centerHorizontal="true"
- android:layout_marginBottom="40dip"
- android:contentDescription="@string/empty" />
- </RelativeLayout>
|