Botão Android +1 no WebView

Tentei colocar o botão +1 do Google no WebView usando os métodos que eles descrevem. Inicializei o WebView da seguinte maneira:

final WebView web = (WebView)findViewById(R.id.webView);
web.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
web.getSettings().setJavaScriptEnabled(true);
web.getSettings().setSavePassword(false);
web.getSettings().setBuiltInZoomControls(false);
web.getSettings().setUseWideViewPort(true);
web.getSettings().setLoadWithOverviewMode(true);
web.setScrollBarStyle(WebView.SCROLLBARS_OUTSIDE_OVERLAY);
web.setHorizontalScrollBarEnabled(false);
web.setBackgroundColor(0xff2e2e2e);
web.loadDataWithBaseURL(null, htmlCodeGoesHere, "text/html", "utf-8", null);

E o código html:

<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
<g:plusone href="http://stackoverflow.com"></g:plusone>

O problema é ... o botão não é exibid

Como faço para corrigir isso? A propósito - também quero que o botão inicie uma nova janela usando o WebView. Existe uma solução simples

Obrigad

questionAnswers(2)

yourAnswerToTheQuestion