Forum Discussion
Adaptive card not Displaying on teams mobile
What did you do? I'm using also Azure Logic Apps and have some image in my adaptive card.
- Griffin1235Nov 27, 2023Copper ContributorNivedipa-MSFT Have a similar issue. Teams Adaptive card renders properly on Web/Desktop versions but not on Mobile - IpHone or Android. Is there an update on this issue?
- smendigorNov 27, 2023Copper Contributor
I found the issue here, it was because of a column set that we used in the Adaptive card, some are not compatible to the images. What I did is I removed the column set and try to put it in a container.
Maybe you can try first to remove the column set if you are using it then check if the image will appear on your mobile.
- Griffin1235Nov 28, 2023Copper Contributorsmendigor Please share your Android/iOS and mobile team versions so we can test on the same ones.
- bodeiSep 09, 2024Copper Contributor
Hi Griffin1235, found two possible ways Teams card can fail on mobiles while ok on desktop:
1) Having an empty image url (I used Power Automate and in my case the link may be null){ "type": "Image", "size": "medium", "url": "@{variables('LinkToImage')}" }
2) Duplicate 'title' fields for 'Action.Submit' - as shown below, look for duplicate '"title": "Submit"', change one of them to 'Submitxyz', see if it's fixed. Not sure if this is explicitly not allowed in the Adaptive Card doc.
"actions": [ { "type": "Action.Submit", "title": "Submit" } ]
I'm using card v1.4
It seems that the desktop Teams is more forgiving while the mobile clients are a lot more sensitive. Also same case as some of you above, my cards worked for some time then one day it stopped showing. The result of a Teams client update probably.
HTH,
GDB