我已经导入了 android support v4 库,在 Java 中它工作正常,但是当我尝试在 xml 中使用它时,它给了我一个XML 文件中的错误:正在中止构建。,所以我不能在我的 xml 中这样做:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<android.support.v4.view.ViewPager android:id="@+id/pager"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
</android.support.v4.view.ViewPager>
</LinearLayout>
我尝试添加库来构建路径和许多其他方法,但我仍然有问题。你们能帮帮我吗?