Add OpenVidu logo to Android tutorial

This commit is contained in:
juancarmore 2024-07-31 17:24:21 +02:00
parent a88c1dcedf
commit 3e0a31e8bc
3 changed files with 23 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -84,6 +84,27 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/roomName" />
<ImageView
android:id="@+id/imageView"
android:layout_width="131dp"
android:layout_height="136dp"
android:layout_marginTop="100dp"
android:contentDescription="@string/openvidu_logo"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/joinButton"
app:srcCompat="@drawable/openvidu_logo" />
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/openvidu_message"
android:textStyle="italic"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView" />
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>

View File

@ -5,6 +5,8 @@
<string name="room">Room</string>
<string name="room_name">Test Room</string>
<string name="joinBtn">Join!</string>
<string name="openvidu_logo">OpenVidu logo</string>
<string name="openvidu_message">Made with love by <b>OpenVidu team</b></string>
<string name="application_server_url">Application Server URL</string>
<string name="livekit_url">LiveKit URL</string>
<string name="configure_urls">Configure URLs</string>