我的SwipeRefreshLayout有点问题, 基本上它会刷新页面,但动画会卡住。
在我刷新时,我调用了其他类的Asynctask,所以我想那里有一个问题。
我的SwipeRefresh听众:
swipeRefresh.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
MyClassAdapter.updateChallenges();
MyClassAdapter.notifyDataSetInvalidated();
swipeRefresh.setRefreshing(false);
}
});
我的Asynctask:
protected MyClass[] doInBackground(String... param) {
URL oracle;
BufferedReader in;
String inputLine;
String jsonFile = "";
try {
Thread.sleep(4000);
} catch (InterruptedException e) {
e.printStackTrace();
}
try {
oracle = new URL("someURL");
in = new BufferedReader(
new InputStreamReader(oracle.openStream()));
while ((inputLine = in.readLine()) != null) {
jsonFile += inputLine;
}
in.close();
} catch (IOException e) {
e.printStackTrace();
}
return jsonToStructure(jsonFile);
}
XML:
<android.support.v4.widget.SwipeRefreshLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/swipe_to_refresh"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true">
<ListView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/list_view"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true"
android:layout_alignParentBottom="true" />
</android.support.v4.widget.SwipeRefreshLayout>
正如我所说,适配器确实刷新了,但是swipeRefreshLayout的动画卡住了。
P.S:我添加了Thread.sleep(4000)只是为了看它是否可以并行运行, 然而,它所做的只是等到任务完成,这是4秒,然后关闭......
你们有什么想法吗? 谢谢你
答案 0 :(得分:0)
这可能是“滚动冲突”问题,请在父视图中检查 onInterceptTouchEvent()和 dispatchTouchEvent()。
SwipeRefreshLayout卡住了,这是因为swipeRefreshLayout无法获取touchEvent,或者他们将touch事件分配给了子视图,这就是它被卡住的原因。
这可能会有所帮助,请检查以下内容:Android Developer - Manage touch events in a ViewGroup