所以我的 XML 看起来像这样:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".Calendar" >
<com.fortysevendeg.android.swipelistview.SwipeListView
xmlns:swipe="http://schemas.android.com/apk/res-auto"
android:id="@+id/example_lv_list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:listSelector="#00000000"
swipe:swipeActionLeft="reveal"
swipe:swipeActionRight="reveal"
swipe:swipeAnimationTime="10"
swipe:swipeBackView="@+id/back"
swipe:swipeCloseAllItemsWhenMoveList="true"
swipe:swipeFrontView="@+id/front"
swipe:swipeMode="right"
swipe:swipeOffsetLeft="80dip"
swipe:swipeOffsetRight="80dip"
swipe:swipeOpenOnLongPress="false" />
</RelativeLayout>
但是,当我在 Eclipse 中进入图形视图时,我收到此错误:
找不到以下类: - com.fortysevendeg.android.swipelistview.SwipeListView(修复构建路径、编辑 XML、创建类)
在 Eclipse 中,在我的包资源管理器窗口中,我有 3 个包。
- android-swipelistview-master
- 我的应用程序
- 库(android-swipelistview-master 的依赖项)
它看起来像这样:屏幕截图
奇怪的是,我在 android-swipelist-view-master 和库包中都没有任何错误。唯一的警告是针对未使用的变量,如果在其他地方使用它,我会犹豫是否要删除它。我想我只是没有正确实例化它?我不知道。这个我想不通!
这是 myApp 包属性 > Android 设置。