gpt4 book ai didi

android - PullToRefresharp 在设备上不起作用

转载 作者:行者123 更新时间:2023-11-29 17:48:20 24 4
gpt4 key购买 nike

我在 Xamarin.Android 上有应用程序,我在其中使用 PullToRefresharp。它在 PC 上的模拟器上运行良好,但不适用于任何设备。当我尝试使用此组件启动布局时 - 布局根本不会加载。

<pulltorefresharp.android.views.ViewWrapper 
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<pulltorefresharp.android.widget.ScrollView
android:id="@+id/textAreaScroller"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_x="0px"
android:layout_y="25px"
android:scrollbars="vertical">
<LinearLayout
android:minWidth="25px"
android:minHeight="25px"
android:orientation="vertical"
android:background="#E6E7E8"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/linearLayout1">
<TableLayout
android:minWidth="25px"
android:minHeight="25px"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/archive_table" />
</LinearLayout>
</pulltorefresharp.android.widget.ScrollView>
</pulltorefresharp.android.views.ViewWrapper>

代码隐藏:

scrollView = FindViewById<PullToRefresharp.Android.Widget.ScrollView>(Resource.Id.textAreaScroller);
if (scrollView != null) {
scrollView.RefreshActivated += HandleRefreshActivated;
}

private void HandleRefreshActivated (object sender, EventArgs e)
{
scrollView.OnRefreshCompleted ();
}

可能是我没有设置任何属性。我希望有人能帮助我。

最佳答案

我在这里推荐你使用Android V4控件,一个非常简单的例子来使用它

首先添加Android Support V4组件

XML 实现

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:minWidth="25px"
android:minHeight="25px">
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipe1"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:minWidth="25px"
android:minHeight="25px"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/listView1" />
</android.support.v4.widget.SwipeRefreshLayout>
</LinearLayout>

代码实现

ListView listView = null;
SwipeRefreshLayout swipe = null;

protected override void OnCreate (Bundle bundle)
{
base.OnCreate (bundle);

// Set our view from the "main" layout resource
SetContentView (Resource.Layout.Main);

listView = FindViewById<ListView> (Resource.Id.listView1);
swipe = FindViewById<SwipeRefreshLayout> (Resource.Id.swipe1);

swipe.Refresh += (sender, e) => {
swipe1.Refreshing = false;
ReloadDataMethod();
};

swipe.SetColorScheme (Android.Resource.Color.HoloBlueBright,
Android.Resource.Color.HoloGreenLight,
Android.Resource.Color.HoloOrangeLight,
Android.Resource.Color.HoloRedLight);
}

这是一个非常简单的实现,希望对你有帮助,有问题可以问我

关于android - PullToRefresharp 在设备上不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24828909/

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