1
我在Xamarin.Android上有應用程序,我在其中使用了PullToRefresharp。它適用於PC上的模擬器,但它不適用於任何設備。當我試圖用此組件啓動佈局時 - 佈局根本不加載。PullToRefresharp在設備上不起作用
<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();
}
可能是我設置didin't任何財產。我希望有人能幫助我。
也許你可以解釋爲什麼你的代碼工作,他沒有,或者他的代碼丟失。 –
我更喜歡使用原生的Android控件,我從來沒有使用他使用的控件,但本地控件完美地適用於我 –
我試圖按照上面的建議使用SwipeRefreshLayout,但我有錯誤:[mono-rt] android。 view.InflateException:二進制XML文件行#1:錯誤膨脹類swipetorefresh.ScrollChildSwipeRefreshLayout –