我如何在listview项目中创建文本选择?

时间:2015-07-30 14:25:50

标签: java android listview selection

我想在TextView中创建一个文本选择,whitch位于ListView项目中。 copyText.setTextIsSelectable(true);android:textIsSelectable="true"无效。自定义操作模式也不起作用。 在LogCat中我得到了一个:

  

W / TextView:TextView不支持文本选择。行动模式已取消。

我想在此图片上创建文字选择: enter image description here

1 个答案:

答案 0 :(得分:0)

我通过在longClick上弹出一个带有ListView行内容的警报对话框,为这个问题写了一个解决方法。
alertdialog具有

的文本视图
android:textIsSelectable="true"
android:focusable="true"

用户现在可以从此对话框中选择/复制他想要的文本。

Codewise,像这样:

lvMsg.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {
   @Override
   public boolean onItemLongClick(AdapterView<?> arg0, View arg1,int pos, long id) {

      final SMessage sms = (SMessage)lvMsg.getItemAtPosition(pos);

       final LayoutInflater layoutInflaterAndroid = LayoutInflater.from(ctx);
       View mView = layoutInflaterAndroid.inflate(R.layout.copy_text_dialog, null);
       AlertDialog.Builder alertDialogBuilderCopy = new AlertDialog.Builder(getActivity());
       alertDialogBuilderCopy.setView(mView);
       TextView copyTextView = (TextView) mView.findViewById(R.id.copyTextView);
       copyTextView.setText(sms.getContent());
       AlertDialog alertDialogAndroidCopy = alertDialogBuilderCopy.create();
       alertDialogAndroidCopy.show();

      }

}

copy_text_dialog.xml的内容:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:text="Long Press to Select Text"
        android:gravity="center"
        android:layout_width="match_parent"
        android:paddingTop="15dp"
        android:paddingBottom="10dp"
        android:textSize="20sp"
        android:textColor="@color/colorPrimary"
        android:layout_height="wrap_content"
        android:id="@+id/copyTextTitle"></TextView>

    <TextView android:textAppearance="?android:attr/textAppearanceMedium"
        android:text="No Text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textColor="#000000"
        android:paddingLeft="10dp"
        android:paddingRight="10dp"
        android:paddingTop="10dp"
        android:paddingBottom="20dp"
        android:gravity="center"
        android:enabled="true"
        android:textIsSelectable="true"
        android:focusable="true"
        android:longClickable="true"
        android:id="@+id/copyTextView"></TextView>

</LinearLayout>