お世話になっております。
現在Xamarin Androidでの開発にMvvMCrossを使用しております。
他処理との兼ね合いでRecyclerViewをMvXRecyclerViewに置き換える必要が出てきたのでまず最小のサンプルプログラムを作成してみようと思ったのですが、上手く実装方法がわからず質問させて頂きます。
RecyclerViewを使用するFragment
namespace MyMvvmCrossApp1.Droid.Views.Main { [MvxFragmentPresentation(typeof(MainContainerViewModel), Resource.Id.content_frame)] public class MainFragment : BaseFragment<MainViewModel> { protected override int FragmentLayoutId => Resource.Layout.fragment_main; private MvvmCross.Droid.Support.V7.RecyclerView.MvxRecyclerView mRecyclerView; private SampleRecyclerViewAdapter mAdapter; public override View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { var view = base.OnCreateView(inflater, container, savedInstanceState); mRecyclerView = view.FindViewById<MvvmCross.Droid.Support.V7.RecyclerView.MvxRecyclerView>(Resource.Id.sample_recyclerview); var layoutManager = new LinearLayoutManager(this.Activity) { Orientation = LinearLayoutManager.Vertical }; mRecyclerView.SetLayoutManager(layoutManager); mRecyclerView.HasFixedSize = true; var SampleList = this.ViewModel.SampleList; //mAdapter = new SampleRecyclerViewAdapter(SampleList); //mRecyclerView.SetAdapter(mAdapter); return this.BindingInflate(FragmentLayoutId, container, false); } } }
######Fragmentのレイアウトファイル
<?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:local="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent"> <mvvmcross.droid.support.v7.recyclerview.MvxRecyclerView android:id="@+id/sample_recyclerview" android:layout_width="match_parent" android:layout_height="match_parent" local:MvxItemTemplate="@layout/sample_row" local:MvxBind="ItemsSource SampleList" /> </androidx.constraintlayout.widget.ConstraintLayout>
######ViewModel
namespace MyMvvmCrossApp1.Core.ViewModels.Main { public class MainViewModel : BaseViewModel { public List<Sample> SampleList { get; set; } } }
######Sampleのデータクラス
namespace MyMvvmCrossApp1.Core.Utill { public class Sample { public string FirstName { get; set; } public string LastName { get; set; } } }
######行レイアウト
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:local="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> <TextView android:id="@+id/first_name" android:layout_width="wrap_content" android:layout_height="wrap_content" local:MvxBind="Text FirstName" /> <TextView android:id="@+id/last_name" android:layout_width="wrap_content" android:layout_height="wrap_content" local:MvxBind="Text LastName" /> </LinearLayout>
主に必要と思っているものが上記クラスになるのですが、ここまで書いた所でいくつかわからない部分が出てきました。
・xml上でアイテムに対するバインドやテンプレートとなる行レイアウトを指定しているのでAdapterやviewHolderは不要なのかどうか
・どのようにして実データを持たせれば良いのか(Coreにデータクラスが存在する為Viewなどで値を入れられない)
C# Xanarin MvvMCrossの知識が浅いので初歩的な質問になってしまいますがよろしくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/04/26 12:36