是否可以在主屏幕小部件中实现SwipeRefreshLayout(拉动刷新)?
我有一个ListView作为主屏幕小部件,它工作正常,但当我用SwipeRefreshLayout环绕它时,它会给出一个错误,但没有logcat。
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swiperefresh"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- ListView to be shown on widget -->
<ListView
android:id="@+id/r2_list_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent"/>
</android.support.v4.widget.SwipeRefreshLayout>
有关如何操作的任何想法/提示将非常感谢!