我想创建一个刷卡来刷新布局,但是引发了这个例子。 Window>中记录了异常详细信息。显示视图>错误日志找不到以下类: - android.support.v4.widget.SwipeRefreshLayout(修复构建路径,编辑XML,创建类)
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/swipe_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView android:text="swipe"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:gravity="center"/>
</ScrollView>
</android.support.v4.widget.SwipeRefreshLayout>
答案 0 :(得分:0)
===更新===
似乎support-v4在你的所有项目中都不相同。只做一件事,使所有支持-v4相同(从一个项目复制到其他项目)
===更新===
你的依赖项库肯定有问题。分享更多细节,以便我们进行调查。
这是Google官方示例,用于滑动以刷新布局:
https://github.com/googlesamples/android-SwipeRefreshListFragment
你可以参考这个。