You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/communication-services/quickstarts/voice-video-calling/includes/teams-user/teams-user-android.md
+46-70Lines changed: 46 additions & 70 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,16 @@
1
1
---
2
-
title: Quickstart - Join a Teams meeting from an Android app
3
-
description: In this tutorial, you learn how to join a Teams meeting using the Azure Communication Services Calling SDK for Android
4
-
author: chpalm
5
-
ms.author: rifox
6
-
ms.date: 03/10/2021
2
+
title: Quickstart - How to call to Teams user from an Android app
3
+
description: In this tutorial, you learn how to make a call to Teams user using the Azure Communication Services Calling SDK for Android
4
+
author: ruslanzdor
5
+
ms.author: ruslanzdor
6
+
ms.date: 07/19/2023
7
7
ms.topic: include
8
8
ms.service: azure-communication-services
9
9
---
10
10
11
-
In this quickstart, you'll learn how to join a Teams meeting using the Azure Communication Services Calling SDK for Android.
12
-
13
11
## Sample Code
14
-
Find the finalized code for this quickstart on [GitHub](https://github.com/Azure-Samples/communication-services-android-quickstarts/tree/main/join-call-to-teams-meeting).
12
+
13
+
Find the finalized code for this quickstart on [GitHub](https://github.com/Azure-Samples/communication-services-android-quickstarts/tree/main/Add%20Voice%20Calling).
15
14
16
15
## Prerequisites
17
16
@@ -33,12 +32,12 @@ Replace code in activity_main.xml with following snippet. The text box will be u
33
32
tools:context=".MainActivity">
34
33
35
34
<EditText
36
-
android:id="@+id/teams_meeting_link"
35
+
android:id="@+id/callee_id"
37
36
android:layout_width="match_parent"
38
37
android:layout_height="wrap_content"
39
38
android:ems="10"
40
-
android:hint="Teams meeting link"
41
-
android:inputType="textUri"
39
+
android:hint="Callee Id"
40
+
android:inputType="textPersonName"
42
41
android:layout_marginTop="100dp"
43
42
android:layout_marginHorizontal="20dp"
44
43
app:layout_constraintEnd_toEndOf="parent"
@@ -48,17 +47,17 @@ Replace code in activity_main.xml with following snippet. The text box will be u
48
47
<LinearLayout
49
48
android:layout_width="match_parent"
50
49
android:layout_height="wrap_content"
51
-
android:layout_marginBottom="70dp"
50
+
android:layout_marginBottom="46dp"
52
51
android:gravity="center"
53
52
app:layout_constraintBottom_toBottomOf="parent"
54
53
app:layout_constraintEnd_toEndOf="parent"
55
54
app:layout_constraintStart_toStartOf="parent">
56
55
57
56
<Button
58
-
android:id="@+id/join_meeting_button"
57
+
android:id="@+id/call_button"
59
58
android:layout_width="wrap_content"
60
59
android:layout_height="wrap_content"
61
-
android:text="Join Meeting" />
60
+
android:text="Call" />
62
61
63
62
<Button
64
63
android:id="@+id/hangup_button"
@@ -69,23 +68,13 @@ Replace code in activity_main.xml with following snippet. The text box will be u
The app can now be launched using the "Run App" button on the toolbar (Shift+F10). You should see the following:
255
-
256
-
:::image type="content" source="../../media/android/acs-join-teams-meeting-quickstart.png" alt-text="Screenshot showing the completed application.":::
232
+
The app can now be launched using the "Run App" button on the toolbar (Shift+F10). Verify you're able to place calls by calling `8:echo123`. A pre-recorded message plays then repeat your message back to you.
257
233
258
-
Insert the Teams context into the text box and press *Join Meeting* to join the Teams meeting from within your Communication Services application.
234
+
:::image type="content" source="../../media/android/quickstart-android-call-echobot.png" alt-text="Screenshot showing the completed application.":::
0 commit comments