作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 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/
我在 Xamarin.Android 上有应用程序,我在其中使用 PullToRefresharp。它在 PC 上的模拟器上运行良好,但不适用于任何设备。当我尝试使用此组件启动布局时 - 布局根本不会
我是一名优秀的程序员,十分优秀!