我跟着this tutorial为我的应用程序制作了一个滑动标签,之后我遇到了错误:
无法启动活动ComponentInfo {com.cap2.macsanity.droidgency / com.cap2.macsanity.droidgency.MainActivity}:android.view.InflateException:二进制XML文件行#2:错误导致类
这是我的活动main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<include
android:id="@+id/tool_bar"
layout="@layout/tool_bar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
/>
<com.cap2.macsanity.droidgency.
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/ColorPrimary"/>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_weight="1"></android.support.v4.view.ViewPager>
</LinearLayout>
任何人都可以帮助我吗?提前谢谢。
编辑2# 它已修复并立即解决,谢谢。
答案 0 :(得分:0)
<com.cap2.macsanity.droidgency.
以下是正确的类名
的问题
答案 1 :(得分:0)
在这里,只需使用所需的包名称定义正确的库名称,如果按CTRL +单击,则将其重定向到您的类,如果不是您的库名称,则不存在类名称
如果您的库名是com.cap2.macsanity.droidgency。并且您的包名称活动和您的类名称是MainActivity,而不是您选择的行
<com.cap2.macsanity.droidgency.Activity.MainActivity
!-------
!------
/>
我希望这对你有用。它对我来说很好。