Выделите и скопируйте текст в TextView Android - PullRequest
0 голосов
/ 21 января 2020

Я знаю, что есть еще один вопрос, такой же, как этот, но я до сих пор не могу ответить на него.

У меня есть TextView в моем фрагменте с информацией внутри. Это длинное текстовое представление с полосой прокрутки. Я хочу скопировать вставить некоторую информацию, но не могу выбрать и скопировать.

Есть мой TextView:

<TextView
            android:id="@+id/tv_observ_client"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dp"
            android:layout_marginTop="40dp"
            android:textIsSelectable="true"
            android:layout_marginEnd="5dp"
            android:textColor="@android:color/black"
            android:scrollbars="vertical"
            android:enabled="true"
            android:focusable="true"
            android:longClickable="true"
            android:text="Info pratiques " />

Я могу скопировать все TextView, но мне нужна только некоторая информация.

Спасибо


РЕДАКТИРОВАТЬ

Это все макет, это может помочь:

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

    <!-- TODO: Update blank fragment layout -->
    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
        android:orientation="horizontal">

    <TextView
        android:id="@+id/tv_nom_cli"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="10dp"
        android:textColor="@android:color/black"
        android:text="Nom client"
        android:textStyle="bold">


    </TextView>
        <TextView
            android:id="@+id/tv_codeP_cli"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textStyle="bold"
            android:layout_marginTop="10dp"
            android:textColor="@android:color/black"
            android:text="Code postal client"
            android:layout_marginStart="10dp">
        </TextView>
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_marginTop="5dp">

        <TextView
            android:id="@+id/tv_adresse_cli"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:layout_marginLeft="10dp"
            android:text="Adresse Client"
            android:textStyle="bold"
            android:textColor="@android:color/black"
             />
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_marginTop="5dp">

        <TextView
            android:id="@+id/tv_ville_cli"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:textColor="@android:color/black"
            android:layout_marginLeft="10dp"
            android:text="Ville Client"
            android:textStyle="bold"></TextView>

        <TextView
            android:id="@+id/tv_tel_cli"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:layout_marginLeft="10dp"
            android:text="Tel Client"
            android:textStyle="bold"
            android:textColor="@android:color/black"
             ></TextView>
        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/imgBtn_tel_client"
            android:src="@drawable/call_answer"></ImageButton>

    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_marginTop="5dp">


        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/tv_nb_hab"
            android:text="Nombre habitants : "
            android:layout_marginTop="10dp"
            android:textStyle="bold"
            android:textColor="@android:color/black"
            android:layout_marginLeft="10dp">

        </TextView>
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <TextView
            android:id="@+id/tv_observ_client"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dp"
            android:layout_marginTop="40dp"
            android:textIsSelectable="true"
            android:layout_marginEnd="5dp"
            android:textColor="@android:color/black"
            android:scrollbars="vertical"
            android:enabled="true"
            android:focusable="true"
            android:longClickable="true"
            android:text="Info pratiques " />
    </LinearLayout>
</LinearLayout>

Это текстовое представление фрагмент, это фрагмент обрабатывается адаптером viewpager с различными вкладками. Интересно, не может ли этот случай дать фокусируемый (и выбираемый) текстовому виду из-за действия смахивания. Надеюсь, это поможет

Ответы [ 2 ]

1 голос
/ 21 января 2020

Попробуйте:

android: textIsSelectable .

т.е. android: textIsSelectable = "true"

0 голосов
/ 22 января 2020

Хорошо, я сам нашел проблему, я не смог ее выбрать, потому что у меня есть

setMovementMethod(new ScrollingMovementMethod());

Я попытался удалить эту проблему, и она работает. Спасибо за вашу помощь

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...