Как вставить форму Iframe от Яндекса?

Подскажите, как засунуть эту форму:

<iframe src="https://yoomoney.ru/quickpay/shop-widget?writer=seller&targets=%D0%9D%D0%B0%20%D0%BF%D0%B8%D0%B2%D0%BA%D0%BE&targets-hint=&default-sum=100&button-text=12&payment-type-choice=on&mobile-payment-type-choice=on&hint=&successURL=&quickpay=shop&account=410011298238457" width="423" height="222" frameborder="0" allowtransparency="true" scrolling="no"></iframe>

На данный момент у меня так через WebView, но в окне просто ссылка на белом фоне:

WebView webview;
webview = (WebView) findViewById(R.id.webview);
webview.getSettings().setJavaScriptEnabled(true);

String html = "<iframe src=\"https://yoomoney.ru/quickpay/shop-widget?writer=seller&targets=%D0%9D%D0%B0%20%D0%BF%D0%B8%D0%B2%D0%BA%D0%BE&targets-hint=&default-sum=100&button-text=12&payment-type-choice=on&mobile-payment-type-choice=on&hint=&successURL=&quickpay=shop&account=410011298238457\" width=\"278\" height=\"99\" frameborder=\"0\" allowtransparency=\"true\" scrolling=\"no\" ></iframe>";

webview.loadData(html, "text/html", null);

Ответы (0 шт):