rebranding: rename sflphone to ring

Refs #69972
Refs #70084

Change-Id: I152468471b02ff3b118c083cd285786e9e286fcc
diff --git a/ring-android/res/layout/frag_call.xml b/ring-android/res/layout/frag_call.xml
new file mode 100644
index 0000000..ce4d2b0
--- /dev/null
+++ b/ring-android/res/layout/frag_call.xml
@@ -0,0 +1,84 @@
+<?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="@drawable/bg_72"
+                android:divider="@drawable/divider">
+
+    <cx.ring.model.BubblesView
+            android:id="@+id/main_view"
+            android:layout_width="match_parent"
+            android:layout_height="match_parent"
+            android:layout_above="@+id/speaker_toggle"/>
+
+    <RelativeLayout
+            android:id="@+id/call_status_bar"
+            android:layout_width="match_parent"
+            android:layout_height="?android:attr/actionBarSize"
+            android:layout_alignParentTop="true">
+
+        <ImageView
+                android:id="@+id/image_call"
+                android:layout_width="wrap_content"
+                android:layout_height="wrap_content"
+                android:layout_centerVertical="true"
+                android:layout_gravity="left"
+                android:layout_marginLeft="15dp"
+                android:layout_marginRight="10dp"
+                android:src="@drawable/ic_action_call"/>
+
+        <TextView
+                android:id="@+id/call_status_txt"
+                android:layout_width="wrap_content"
+                android:layout_height="wrap_content"
+                android:layout_centerVertical="true"
+                android:layout_toRightOf="@+id/image_call"
+                android:textSize="12sp"
+                android:textColor="@color/white"/>
+
+        <ViewSwitcher
+                android:id="@+id/security_switcher"
+                android:layout_width="wrap_content"
+                android:layout_height="wrap_content"
+                android:layout_centerVertical="true"
+                android:visibility="gone"
+                android:layout_toLeftOf="@+id/dialpad_btn">
+
+            <Button
+                    android:id="@+id/confirm_sas"
+                    android:layout_width="wrap_content"
+                    android:layout_height="wrap_content"
+                    android:layout_gravity="center"
+                    android:textSize="12sp"
+                    android:textColor="@color/white"/>
+
+            <ImageView
+                    android:id="@+id/lock_image"
+                    android:layout_gravity="end|center_vertical"
+                    android:layout_width="wrap_content"
+                    android:layout_height="wrap_content"/>
+        </ViewSwitcher>
+
+
+        <ImageButton
+                android:id="@+id/dialpad_btn"
+                android:layout_width="wrap_content"
+                android:layout_height="wrap_content"
+                android:layout_alignParentRight="true"
+                android:layout_centerVertical="true"
+                android:layout_marginRight="10dp"
+                android:background="@null"
+                android:src="@drawable/ic_action_dial_pad_light"/>
+
+    </RelativeLayout>
+
+    <ToggleButton
+            android:id="@+id/speaker_toggle"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:textOn=""
+            android:textOff=""
+            android:background="@drawable/toggle_speaker_selector"
+            android:layout_alignParentBottom="true"/>
+
+</RelativeLayout>
\ No newline at end of file