我已经搜索了一段时间,关于如何在Android应用中添加一个加号按钮。事情是我发现了(因为有很多关于它的问题)。但是当我把:
<com.google.android.gms.plus.PlusOneButton
xmlns:plus="http://schemas.android.com/apk/lib/com.google.android.gms.plus"
android:id="@+id/plus_one_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
plus:size="standard"
plus:annotation="inline" />
布局中的代码,我得到一个渲染错误(要求我创建一个类,我做了,它没有用,我把:“com.google.android.gms.plus.PlusOneButton”更改为“my包名称.PlusOneButton“并且它仍然无效)。然后到java编码,我将一个变量添加到我的main_activity.java文件中,并在onCreate上添加:
mPlusOneButton = (PlusOneButton) findViewById(R.id.plus_one_button);
然后在这一步,我得到“(PlusOneButton)”下划线红色,意味着它不能“解决”。
现在,我做错了什么?
我想创建一个新布局和一个与这个新布局相关的新java文件? 我到底想要做什么?任何帮助都会非常苛刻!
提前致谢。