mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 03:18:06 +00:00
Fixed group chat event icons
This commit is contained in:
parent
6847227f1a
commit
cfec621787
2 changed files with 17 additions and 6 deletions
|
|
@ -116,22 +116,24 @@ class EventModel
|
|||
EventLog.Type.ConferenceEphemeralMessageLifetimeChanged -> {
|
||||
R.drawable.clock_countdown
|
||||
}
|
||||
EventLog.Type.ConferenceTerminated,
|
||||
EventLog.Type.ConferenceSecurityEvent -> {
|
||||
R.drawable.warning_circle
|
||||
}
|
||||
EventLog.Type.ConferenceSubjectChanged -> {
|
||||
R.drawable.pencil_simple
|
||||
}
|
||||
EventLog.Type.ConferenceCreated,
|
||||
EventLog.Type.ConferenceParticipantDeviceAdded,
|
||||
EventLog.Type.ConferenceParticipantDeviceRemoved -> {
|
||||
EventLog.Type.ConferenceParticipantAdded,
|
||||
EventLog.Type.ConferenceCreated -> {
|
||||
R.drawable.door_open
|
||||
}
|
||||
EventLog.Type.ConferenceParticipantRemoved,
|
||||
EventLog.Type.ConferenceTerminated -> {
|
||||
R.drawable.door
|
||||
}
|
||||
EventLog.Type.ConferenceParticipantAdded -> {
|
||||
EventLog.Type.ConferenceParticipantDeviceAdded -> {
|
||||
R.drawable.user_circle_plus
|
||||
}
|
||||
EventLog.Type.ConferenceParticipantRemoved -> {
|
||||
EventLog.Type.ConferenceParticipantDeviceRemoved -> {
|
||||
R.drawable.user_circle_minus
|
||||
}
|
||||
EventLog.Type.ConferenceParticipantSetAdmin -> {
|
||||
|
|
|
|||
9
app/src/main/res/drawable/door_open.xml
Normal file
9
app/src/main/res/drawable/door_open.xml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="256"
|
||||
android:viewportHeight="256">
|
||||
<path
|
||||
android:pathData="M232,216L208,216L208,40a16,16 0,0 0,-16 -16L64,24A16,16 0,0 0,48 40L48,216L24,216a8,8 0,0 0,0 16L232,232a8,8 0,0 0,0 -16ZM192,216L176,216L176,40h16ZM64,40h96L160,216L64,216ZM144,132a12,12 0,1 1,-12 -12A12,12 0,0 1,144 132Z"
|
||||
android:fillColor="#4e6074"/>
|
||||
</vector>
|
||||
Loading…
Add table
Reference in a new issue