We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a263695 + e91ab45 commit f43b983Copy full SHA for f43b983
OneSignalSDK/onesignal/src/main/java/com/onesignal/InAppMessageView.java
@@ -93,6 +93,7 @@ interface InAppMessageViewListener {
93
94
void setWebView(WebView webView) {
95
this.webView = webView;
96
+ this.webView.setBackgroundColor(Color.TRANSPARENT);
97
}
98
99
void setMessageController(InAppMessageViewListener messageController) {
@@ -375,6 +376,7 @@ private CardView createCardView(Context context) {
375
376
cardView.setClipChildren(false);
377
cardView.setClipToPadding(false);
378
cardView.setPreventCornerOverlap(false);
379
+ cardView.setBackgroundColor(Color.TRANSPARENT);
380
381
return cardView;
382
0 commit comments