|
@@ -0,0 +1,90 @@
|
|
|
+<?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"
|
|
|
+ >
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="25dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:orientation="vertical">
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/nameTv"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textAlignment="center"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="20sp"
|
|
|
+ android:textStyle="bold"
|
|
|
+ android:text="ssssssaa"
|
|
|
+ />
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/hintTv"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="1dp"
|
|
|
+ android:textAlignment="center"
|
|
|
+ android:textColor="#74777D"
|
|
|
+ android:textSize="17sp"
|
|
|
+ android:text="543543543534"
|
|
|
+ />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignParentBottom="true"
|
|
|
+ android:layout_marginBottom="8dp"
|
|
|
+ android:gravity="center"
|
|
|
+ >
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/videoLayout"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:orientation="vertical"
|
|
|
+ >
|
|
|
+ <ImageButton
|
|
|
+ android:layout_width="50dp"
|
|
|
+ android:layout_height="50dp"
|
|
|
+ android:background="@drawable/ic_videocall"
|
|
|
+ android:clickable="false"
|
|
|
+ />
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/video_call"
|
|
|
+ android:textAlignment="center"
|
|
|
+ android:textColor="#FFFFFF"
|
|
|
+ android:textSize="15sp" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/callLayout"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ android:orientation="vertical"
|
|
|
+ >
|
|
|
+ <ImageButton
|
|
|
+ android:layout_width="50dp"
|
|
|
+ android:layout_height="50dp"
|
|
|
+ android:background="@drawable/ic_call"
|
|
|
+ android:clickable="false"
|
|
|
+ />
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/call"
|
|
|
+ android:textAlignment="center"
|
|
|
+ android:textColor="#FFFFFF"
|
|
|
+ android:textSize="15sp" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+</RelativeLayout>
|