Xamarin.android 如何在Xamarin Android中为textview启用复制粘贴?

Xamarin.android 如何在Xamarin Android中为textview启用复制粘贴?,xamarin.android,textview,android,Xamarin.android,Textview,Android,我有RecyclerView,使用ViewHolder包含CardView和TextView。 对于textview,我启用了“textIsSelectable”属性,允许您选择文本并复制它。 以下是我的文本视图: <TextView android:text="Small Text" android:textAppearance="?android:attr/textAppearanceSmall

我有RecyclerView,使用ViewHolder包含CardView和TextView。 对于textview,我启用了“textIsSelectable”属性,允许您选择文本并复制它。 以下是我的文本视图:

              <TextView
                android:text="Small Text"
                android:textAppearance="?android:attr/textAppearanceSmall"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/txtNFDescription"
                android:textColor="#3f4852"
                android:bufferType="spannable"
                android:textIsSelectable="true" />
有什么建议或解决方案吗?为什么会发生这种情况

08-17 12:05:20.031 W/TextView(10128): TextView does not support text selection. Selection cancelled.