私はこれを試しました: https://github.com/crowjdh/android-facebook-like-button-integration
しかし、それは機能しません。ユーザーが開発中のAndroidアプリケーションのボタンを押したときに、Facebookページに「いいね」するよりも簡単なものを検索します。ありがとうございました
私はこれを試しました: https://github.com/crowjdh/android-facebook-like-button-integration
しかし、それは機能しません。ユーザーが開発中のAndroidアプリケーションのボタンを押したときに、Facebookページに「いいね」するよりも簡単なものを検索します。ありがとうございました
WebView を作成して、ボタンを内部に配置できます。
次のようなものを試すことができます:
String url = "http://www.facebook.com/plugins/like.php?layout=standard&show_faces=true&width=80&height=50&action=like&colorscheme=light&href=http://beta.demo.dy/web/service/304.htm";
// webview = (WebView) findViewById(R.id.webview);
webView.loadUrl(url);
webView.setWebViewClient(new WebViewClient());
class LikeWebviewClient extends WebViewClient
{
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return true;
}
}