0

更新到最新的 Android 构建工具 (0.4.2) 并在尝试组装时遇到以下问题:

/AndroidApp/App/build/res/all/flavor/debug/layout/fragment.xml:84:错误:在包“com.viewpagerindicator”中找不到属性“gapWidth”的资源标识符

RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/build/res/com.viewpagerindicator" android:layout_width="match_parent" android:layout_height="match_parent" >

4

2 回答 2

2

由于风味可能使用不同的包名,而不是在自定义命名空间中指定包名,请使用:' http://schemas.android.com/apk/res-auto '。

于 2013-06-02T13:00:18.533 回答
1

更新您的自定义 XML 链接路径以使用build而不是apk.

是,在 fragment.xml 文件中 xmlns:app="http://schemas.android.com/apk/res/com.viewpagerindicator"

现在,到这个: xmlns:app="http://schemas.android.com/build/res/com.viewpagerindicator"

于 2013-05-31T19:24:13.137 回答