facebook connect api GUI 问题

发布于 2024-10-20 02:26:23 字数 1073 浏览 2 评论 0原文

我正在将 Eclipse 和 Android 模拟器用于 FBconnect 应用程序(在版本 2.2 上运行)。

我遇到的问题是,当我运行我的应用程序时,我看不到任何功能,例如登录按钮、权限按钮......

显示的只是一个空的“连接到 facebook”对话框。我查看了 main.xml 类,在图形视图中按钮确实存在,但在我看来是透明的。

xml代码如下所示:

<Button android:text="@+id/login"
    android:id="@+id/login" 
    android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     />

<TextView android:id="@+id/label" 
    android:textColor="@drawable/black"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="30dp"
    />

<Button android:text="@+id/permissionButton"
    android:id="@+id/permissionButton" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    />

<Button android:text="@+id/feedButton" 
    android:id="@+id/feedButton" 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    />

    </LinearLayout>

登录、permissionButton 和 feedButton 按钮都在我的 MainActivity 类中调用。

有人可以帮忙吗?

I am using eclipse and the android emulator to a FBconnect application (running on version 2.2).

the problem that I am having is that, when I run my application I cant see any functions such as login button, permission button....

all that is displayed is a empty "connect to facebook" dialogue box. I have looked at the main.xml class and in the graphical view the buttons do exist but seem to me transparent.

the xml code looks as follows:

<Button android:text="@+id/login"
    android:id="@+id/login" 
    android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     />

<TextView android:id="@+id/label" 
    android:textColor="@drawable/black"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="30dp"
    />

<Button android:text="@+id/permissionButton"
    android:id="@+id/permissionButton" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    />

<Button android:text="@+id/feedButton" 
    android:id="@+id/feedButton" 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    />

    </LinearLayout>

the login, permissionButton, and feedButton button are all called withing my MainActivity class.

can anyone help?

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

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

发布评论

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

评论(1

童话里做英雄 2024-10-27 02:26:23

您忘记了起始标签
所以要完成它应该是:

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

<TextView android:id="@+id/label" 
    android:textColor="@drawable/black"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="30dp"
    />

<Button android:text="@+id/permissionButton"
    android:id="@+id/permissionButton" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    />

<Button android:text="@+id/feedButton" 
    android:id="@+id/feedButton" 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    />

    </LinearLayout>

You forget the starting tag <LinearLayout>
so to complete it should be :

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

<TextView android:id="@+id/label" 
    android:textColor="@drawable/black"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="30dp"
    />

<Button android:text="@+id/permissionButton"
    android:id="@+id/permissionButton" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    />

<Button android:text="@+id/feedButton" 
    android:id="@+id/feedButton" 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    />

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