gpt4 book ai didi

android - SwipeRefreshLayout 不显示任何刷新指示器

转载 作者:数据小太阳 更新时间:2023-10-29 02:15:32 25 4
gpt4 key购买 nike

我有一个 SwipeRefreshLayout 在 Activity 中显示的 fragment 中使用。滑动确实会执行刷新,但在我下拉后它会立即返回并且没有不确定进度的指示器(动画进度条)。它只是消失了,但仍然在完成时调用 onRefresh()。这是我的布局……

Activity 布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">

<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

<ListView
android:id="@+id/left_drawer"
android:layout_width="@dimen/nav_drawer_width"
android:layout_height="match_parent"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:dividerHeight="1px"
android:background="@color/drawer_background_gray"
android:clipToPadding="false"/>

</android.support.v4.widget.DrawerLayout>

fragment 布局:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipe_container"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"/>

</android.support.v4.widget.SwipeRefreshLayout>

<TextView
android:id="@android:id/empty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="@dimen/empty_text_size"
android:layout_gravity="center"
android:gravity="center"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:paddingLeft="15dp"
android:paddingRight="15dp"
android:textColor="@color/brand_green"/>

<ProgressBar
android:id="@android:id/progress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminateOnly="true"
android:visibility="gone"
android:layout_gravity="center"/>

</FrameLayout>

初始化 Fragment 布局的代码:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_list, null);
swipeLayout = (SwipeRefreshLayout) view.findViewById(R.id.swipe_container);
swipeLayout.setOnRefreshListener(this);
swipeLayout.setColorScheme(android.R.color.holo_blue_bright,
android.R.color.holo_green_light,
android.R.color.holo_orange_light,
android.R.color.holo_red_light);
return view;
}

刷新时通常会有 3 到 6 秒的延迟,足以在查看日志时注意到它。它应该是可见的,并且当我使用现在已弃用的 ActionBar-PullToRefresh 库时它工作正常。我已尝试将 SwipeRefreshLayout 设置为 Fragment 布局的 Root View ,并尝试删除空文本和进度 View ,但它仍然不起作用。

我的实际代码中还有一些步骤,我无法透露,因为它是为我的公司设计的应用程序。但它只是为许多做相似事情的不同 fragment 提供相似的基础,它不应该影响任何功能。

最佳答案

我使用了下面的方法,经过多次尝试后,它对我有用,没有变通方法,甚至没有 fragment :

<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">

** content **

</ScrollView>

</android.support.v4.widget.SwipeRefreshLayout>

AppCompat 库:com.android.support:appcompat-v7:21.0.3

关于android - SwipeRefreshLayout 不显示任何刷新指示器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23661805/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com