就像应用程序本身在 facebook 中的 Android 应用程序页面一样

发布于 2024-12-09 17:25:24 字数 59 浏览 0 评论 0原文

使用 Android 应用程序的用户是否可以喜欢应用程序本身在 Facebook 中创建的应用程序页面?

Is it possible that a user using android application can like that application page created in Facebook from application itself?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

肥爪爪 2024-12-16 17:25:24

是的。

只需创建一个带有 WebView 的布局

,就像

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">

<WebView 
    android:id="@+id/webview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
/>

</LinearLayout>

创建一个 Activity

Like.class

WebView webview;
Then add the following at the end of the onCreate() method:
webview = (WebView) findViewById(R.id.webview);
webview.getSettings().setJavaScriptEnabled(true);
webview.loadUrl(YOUR_FB_LIKE_URL);

Yes.

Just create a Layout with a WebView

Like

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">

<WebView 
    android:id="@+id/webview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
/>

</LinearLayout>

Create a activity

Like.class

WebView webview;
Then add the following at the end of the onCreate() method:
webview = (WebView) findViewById(R.id.webview);
webview.getSettings().setJavaScriptEnabled(true);
webview.loadUrl(YOUR_FB_LIKE_URL);
心碎无痕… 2024-12-16 17:25:24

我有这个代码用于在墙上发布有关我的应用程序的信息:

protected void onClickFacebook() {
    Intent i = new Intent(Intent.ACTION_VIEW);
    String Url = Constants.URL_FACEBOOK;
    i.setData(Uri.parse(Url));
    startActivity(i);
}

我认为如果您将 URL-facebook 替换为您喜欢的 url,它也应该起作用

I have this code fo publishing info about my app on the wall:

protected void onClickFacebook() {
    Intent i = new Intent(Intent.ACTION_VIEW);
    String Url = Constants.URL_FACEBOOK;
    i.setData(Uri.parse(Url));
    startActivity(i);
}

I think if you replace URL-facebook by your like url it should also work

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文