mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-26 03:16:02 +03:00
Fixes missing call icons
This commit is contained in:
parent
343322ef21
commit
f6a03cdc63
1 changed files with 8 additions and 4 deletions
|
@ -19,24 +19,27 @@
|
|||
android:title="@string/action_invite"
|
||||
app:showAsAction="never" />
|
||||
|
||||
<!-- We always want to show this item as an icon -->
|
||||
<item
|
||||
android:id="@+id/video_call"
|
||||
android:icon="@drawable/ic_video"
|
||||
android:title="@string/action_video_call"
|
||||
android:visible="false"
|
||||
app:iconTint="?colorPrimary"
|
||||
app:showAsAction="ifRoom"
|
||||
app:showAsAction="always"
|
||||
tools:visible="true" />
|
||||
|
||||
<!-- We always want to show this item as an icon -->
|
||||
<item
|
||||
android:id="@+id/voice_call"
|
||||
android:icon="@drawable/ic_phone"
|
||||
android:title="@string/call"
|
||||
android:visible="false"
|
||||
app:iconTint="?colorPrimary"
|
||||
app:showAsAction="ifRoom"
|
||||
app:showAsAction="always"
|
||||
tools:visible="true" />
|
||||
|
||||
<!-- We always want to show this item as an icon -->
|
||||
<item
|
||||
android:id="@+id/menu_timeline_thread_list"
|
||||
android:title="@string/action_view_threads"
|
||||
|
@ -44,7 +47,8 @@
|
|||
app:actionLayout="@layout/view_thread_notification_badge"
|
||||
app:iconTint="?colorPrimary"
|
||||
app:showAsAction="always"
|
||||
tools:visible="true" />
|
||||
tools:visible="true"
|
||||
tools:ignore="AlwaysShowAction" />
|
||||
|
||||
<item
|
||||
android:id="@+id/join_conference"
|
||||
|
@ -86,4 +90,4 @@
|
|||
android:title="@string/action_share"
|
||||
app:iconTint="?vctr_content_secondary"
|
||||
app:showAsAction="withText" />
|
||||
</menu>
|
||||
</menu>
|
||||
|
|
Loading…
Reference in a new issue