mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
Replaced fat check by simple one in toasts
This commit is contained in:
parent
db722badaf
commit
2205ad1eb8
5 changed files with 6 additions and 15 deletions
|
|
@ -230,7 +230,7 @@ class ContactFragment : GenericFragment() {
|
|||
}
|
||||
(requireActivity() as MainActivity).showGreenToast(
|
||||
message,
|
||||
R.drawable.check_fat_fill
|
||||
R.drawable.check
|
||||
)
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -122,7 +122,7 @@ class HistoryContactFragment : GenericFragment() {
|
|||
|
||||
(requireActivity() as MainActivity).showGreenToast(
|
||||
getString(R.string.toast_call_history_deleted),
|
||||
R.drawable.check_fat_fill
|
||||
R.drawable.check
|
||||
)
|
||||
goBack() // TODO FIXME : issue with tablet when pane can't be closed
|
||||
}
|
||||
|
|
@ -139,7 +139,7 @@ class HistoryContactFragment : GenericFragment() {
|
|||
|
||||
(requireActivity() as MainActivity).showGreenToast(
|
||||
getString(R.string.toast_sip_address_copied_to_clipboard),
|
||||
R.drawable.check_fat_fill
|
||||
R.drawable.check
|
||||
)
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -166,7 +166,7 @@ class HistoryListFragment : AbstractTopBarFragment() {
|
|||
Log.w("$TAG All call logs have been deleted")
|
||||
(requireActivity() as MainActivity).showGreenToast(
|
||||
getString(R.string.toast_call_history_deleted),
|
||||
R.drawable.check_fat_fill
|
||||
R.drawable.check
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
@ -229,7 +229,7 @@ class HistoryListFragment : AbstractTopBarFragment() {
|
|||
|
||||
(requireActivity() as MainActivity).showGreenToast(
|
||||
getString(R.string.toast_sip_address_copied_to_clipboard),
|
||||
R.drawable.check_fat_fill
|
||||
R.drawable.check
|
||||
)
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +0,0 @@
|
|||
<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="M243.33,90.91 L114.92,219.31a16,16 0,0 1,-22.63 0l-71.62,-72a16,16 0,0 1,0 -22.61l24,-24a16,16 0,0 1,22.57 -0.06l36.64,35.27 0.11,0.11h0l92.73,-91.37a16,16 0,0 1,22.58 0l24,23.56A16,16 0,0 1,243.33 90.91Z"
|
||||
android:fillColor="#4e6074"/>
|
||||
</vector>
|
||||
|
|
@ -45,7 +45,7 @@
|
|||
android:layout_width="@dimen/icon_size"
|
||||
android:layout_height="@dimen/icon_size"
|
||||
android:adjustViewBounds="true"
|
||||
android:src="@{icon, default=@drawable/check_fat_fill}"
|
||||
android:src="@{icon, default=@drawable/check}"
|
||||
tint="@{text_color}"
|
||||
disableTint="@{do_not_tint}"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue