我正在尝试使用github示例https://github.com/chrisbanes/Android-PullToRefresh实现pull-to-refresh,但是当我要实现列表视图时,它让我无法加载类master \ library \ src \ com \ handmark \ pulltorefresh \库\ pullToRefreshListView
I have imported library project into system and also placed the jar file.
我运行了使用此库的示例项目,它的工作屏幕截图是:
但是当我试图将这个类实现到我的项目时,它给出了类找不到异常我已经创建了一个libs文件夹并将library.jar文件放在那里并将其添加到构建路径但是仍然在运行时抛出此错误
在我的xml文件中我放了
<com.handmark.pulltorefresh.library.PullToRefreshListView
android:id="@+id/listView1"
android:divider="#E4E4E4"
android:dividerHeight="2dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:cacheColorHint="#00000000"
android:fadingEdge="none"
android:fastScrollEnabled="false"
android:footerDividersEnabled="false"
android:headerDividersEnabled="false"
android:smoothScrollbar="true" />
答案 0 :(得分:1)
终于得到了它的解决方案
代替在lib中添加jar文件并将其添加到构建路径,我们必须将库项目作为依赖项目
你必须在这里添加项目
右击:==&GT; properties ==&gt; Android ==&gt;&gt;图书馆(添加)
答案 1 :(得分:0)
您是否正确链接了lib?请检查您的IDE或project.properties。