Android支持库V4 XML

时间:2012-07-22 23:01:03

标签: android xml

我已经导入了android支持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>

我尝试添加库来构建路径和许多其他方法,但我仍然有问题。你能帮帮我们吗?

1 个答案:

答案 0 :(得分:2)

您确定将jar放在项目的libs文件夹中吗? 请参阅此SO帖子以获得解释:Android: What is the folder name of the jar files (LIB or LIBS)?