私はMainActivityでアクションを持っています。私は別のViewPagerActivityにそれを渡したい:AppCompatActivty。以下のようにここにある:バンドルタイプのアクションタイプをAppCompatActivityに渡す方法android xamarin
Action<ImageView> btnAction = PickSelected;
...
private void PickSelected(ImageView img)
{
}
...
var intentVP = new Android.Content.Intent(this, typeof(ViewPagerActivity));
Bundle mb = new Bundle();
mb.PutParcelable("bundle",btnAction); // here it give me the error
intentVP.PutExtra("MainBundle",mb);
StartActivity(intentVP);
エラーは次である:「btnActionはAndroid.OS.IParcelableにSystem.Actionから変換することはできません」。アクション型を渡すことは可能ですか、別の方法がありますか?