728x90
728x170
WebView localWebView = FindViewById<WebView>(Resource.Id.LocalWebView);
localWebView.SetWebViewClient(new WebViewClient());
string html = $@"
<html>
<body bgcolor='black'>
<a href ='{urlString}' target='_blank'>
<div style='width: 280px; height: 230px; overflow: hidden; position: relative;'>
<img src='{urlString}' style='position: absolute; top:-15px; left:-95px; width:430px; height: 240px;'/>
</div>
</a>
</body>
</html>
";
localWebView.LoadData(html, "text/html", null);
728x90
그리드형
'C# > Xamarin Maui' 카테고리의 다른 글
[펌]자마린으로 만든 게임 - GuessNumberGame (0) | 2018.04.15 |
---|---|
[Xamarin.Android] ImageView 에 URL 이미지 화면에 표시하기 (0) | 2018.04.15 |
[Xamarin.Android] 이미지 자르기 (0) | 2018.04.12 |
(Xamarin Forms) 배터리 상태 정보 가져오기 (0) | 2018.03.02 |
Xamarin 으로 만든 게임 - 링크 (0) | 2018.02.04 |