facebook connect api GUI 问题
我正在将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您忘记了起始标签
所以要完成它应该是:
You forget the starting tag
<LinearLayout>
so to complete it should be :