Can hang up conversation

This commit is contained in:
2019-02-26 17:22:36 +01:00
parent f08f1940fc
commit 959afda2cf
8 changed files with 129 additions and 2 deletions

View File

@ -20,4 +20,19 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<ImageButton
android:id="@+id/hangUp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:backgroundTint="@color/holo_red_dark"
android:src="@drawable/ic_call"
android:tint="@android:color/white"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
android:contentDescription="@string/action_hang_up"/>
</android.support.constraint.ConstraintLayout>

View File

@ -332,4 +332,5 @@
<string name="err_get_call_info">Impossible de récupérer les infoamtions sur l\'appel !</string>
<string name="err_connect_signaling_server">Impossible de connecter au signaling server !</string>
<string name="notice_call_terminated">Appel terminé.</string>
<string name="action_hang_up">Raccrocher</string>
</resources>

View File

@ -331,4 +331,5 @@
<string name="err_get_call_info">Could not get call information!</string>
<string name="err_connect_signaling_server">Could not connect to signaling server!</string>
<string name="notice_call_terminated">Call terminated</string>
<string name="action_hang_up">Hang up</string>
</resources>