我的项目没有认识到添加的项目

时间:2013-04-06 07:25:17

标签: android

<com.mobidevelop.widget.SplitPaneLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:spl="http://schemas.android.com/apk/res-auto"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    spl:orientation="vertical"
    spl:splitterSize="12dip"
    spl:splitterPosition="33%"
    spl:splitterBackground="@drawable/splitter_bg_v"
    >

我正在尝试在Android中开发一个关于SplitPane概念的应用程序。

我从github下载了该应用程序         https://github.com/MobiDevelop/android-split-pane-layout

当我导入项目时,我在上面提到的行的main.xml文件中收到以下错误  

Multiple annotations found at this line:
    - error: No resource identifier found for attribute 'splitterSize' in package 'com.mobidevelop.widget'
    - error: No resource identifier found for attribute 'splitterPosition' in package 
     'com.mobidevelop.widget'
    - error: No resource identifier found for attribute 'orientation' in package 'com.mobidevelop.widget'
    - error: No resource identifier found for attribute 'splitterBackground' in package 
     'com.mobidevelop.widget'

请帮助解决此问题

由于

1 个答案:

答案 0 :(得分:0)

您似乎错过了这个文件:

https://github.com/MobiDevelop/android-split-pane-layout/blob/master/split-pane-layout/res/values/attrs.xml

要么这样做,要么Project > Clean确保R文件自行重新生成。