0
<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'

请帮助解决这个问题

谢谢

4

1 回答 1

0

您似乎缺少此文件:

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

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

于 2013-04-06T08:18:18.160 回答