实施 Admob-"Cannnot resolve example..."
Implementing Admob-"Cannnot resolve example..."
我最近一直在工作,快完成我的第一个应用程序了。剩下的就是实施 AdMob,但在这样做的过程中,我总是在 android:name=... 部分从示例开始出现错误。
错误是 Cannot Resolve Symbol Example 并且它继续到它后面的其他单词。
我是不是遗漏了什么,比如com.google.android之后的区域(错误所在)。
<fragment android:name="com.google.android.gms.example.bannerexample.MainActivity$PlaceholderFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/adFragment" />
<fragment
android:id="@+id/adFragment"
android:name="com.google.android.gms.example.bannerexample.MainActivity$AdFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" />
行
com.google.android.gms.example.bannerexample.MainActivity$AdFragment
基于示例应用程序中使用的包名称 here。您应该改用自己的应用程序包名称。引用文档:
Here we've used "Banner Example" as the Application name and "example.gms.android.google.com" as the company domain. This gives you the package name "com.google.android.gms.example.bannerexample".
我最近一直在工作,快完成我的第一个应用程序了。剩下的就是实施 AdMob,但在这样做的过程中,我总是在 android:name=... 部分从示例开始出现错误。 错误是 Cannot Resolve Symbol Example 并且它继续到它后面的其他单词。
我是不是遗漏了什么,比如com.google.android之后的区域(错误所在)。
<fragment android:name="com.google.android.gms.example.bannerexample.MainActivity$PlaceholderFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/adFragment" />
<fragment
android:id="@+id/adFragment"
android:name="com.google.android.gms.example.bannerexample.MainActivity$AdFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" />
行
com.google.android.gms.example.bannerexample.MainActivity$AdFragment
基于示例应用程序中使用的包名称 here。您应该改用自己的应用程序包名称。引用文档:
Here we've used "Banner Example" as the Application name and "example.gms.android.google.com" as the company domain. This gives you the package name "com.google.android.gms.example.bannerexample".