New voip design: makes lint happy
This commit is contained in:
parent
121f17b93f
commit
2b708387c2
|
@ -352,7 +352,7 @@ class NoticeEventFormatter @Inject constructor(
|
|||
}
|
||||
EventType.CALL_REJECT ->
|
||||
if (event.isSentByCurrentUser()) {
|
||||
sp.getString(R.string.call_tile_you_declined, "")
|
||||
sp.getString(R.string.call_tile_you_declined_this_call)
|
||||
} else {
|
||||
sp.getString(R.string.call_tile_other_declined, senderName)
|
||||
}
|
||||
|
|
|
@ -65,6 +65,7 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="16dp"
|
||||
android:src="@drawable/ic_arrow_right"
|
||||
tools:ignore="ContentDescription"
|
||||
app:tint="?vctr_content_quaternary" />
|
||||
|
||||
<ImageView
|
||||
|
@ -73,6 +74,7 @@
|
|||
android:layout_marginStart="8dp"
|
||||
android:alpha="0.5"
|
||||
android:src="@drawable/ic_arrow_right"
|
||||
tools:ignore="ContentDescription"
|
||||
app:tint="?vctr_content_quaternary" />
|
||||
|
||||
<ImageView
|
||||
|
@ -81,6 +83,7 @@
|
|||
android:layout_marginStart="8dp"
|
||||
android:alpha="0.2"
|
||||
android:src="@drawable/ic_arrow_right"
|
||||
tools:ignore="ContentDescription"
|
||||
app:tint="?vctr_content_quaternary" />
|
||||
|
||||
</LinearLayout>
|
||||
|
@ -99,6 +102,7 @@
|
|||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
tools:ignore="ContentDescription"
|
||||
android:src="@drawable/ic_call_hangup" />
|
||||
|
||||
</FrameLayout>
|
||||
|
|
|
@ -3269,7 +3269,8 @@
|
|||
<string name="call_tile_you_started_call">You started a call</string>
|
||||
<string name="call_tile_other_started_call">%1$s started a call</string>
|
||||
<string name="call_tile_in_call">You\'re currently in this call</string>
|
||||
<string name="call_tile_you_declined">You declined this call</string>
|
||||
<string name="call_tile_you_declined">You declined this call %s</string>
|
||||
<string name="call_tile_you_declined_this_call">You declined this call</string>
|
||||
<string name="call_tile_other_declined">%1$s declined this call</string>
|
||||
<string name="call_tile_ended">This call has ended</string>
|
||||
<string name="call_tile_call_back">Call back</string>
|
||||
|
|
Loading…
Reference in New Issue