在ScrollView中的Textview中复制文本

时间:2019-06-10 13:06:24

标签: android

我有一个带有一些textview的ScrollView。但是当我尝试复制它时,什么也没发生,因为scrollview会拦截所有运动。如何解决这个问题?地图中的行为相同,我无法垂直滚动

<android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintTop_toBottomOf="@+id/contact_appBarLayout"
        android:fillViewport="true"
        android:overScrollMode="never"
        android:scrollbars="none">

    <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

        <fragment
                android:id="@+id/contacts_map"
                android:layout_width="match_parent"
                android:layout_height="300dp"
                app:layout_constraintTop_toTopOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                android:name="com.google.android.gms.maps.SupportMapFragment"/>

        <LinearLayout
                android:id="@+id/contacts_address"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/contacts_map"
                android:orientation="vertical"
                android:layout_marginTop="@dimen/margin_32dp"
                android:layout_marginStart="@dimen/margin_24dp"
                android:layout_marginEnd="@dimen/margin_24dp">

            <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="@string/contacts_address_title"
                    android:textColor="@color/grey_dark_636363"
                    android:textSize="@dimen/textSize_14sp"/>

            <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="@string/contacts_address_subtitle"
                    android:layout_marginTop="@dimen/margin_8dp"
                    android:textColor="@color/black"
                    android:textSize="@dimen/textSize_18sp"/>
        </LinearLayout>
    </LinearLayout>
</android.support.v4.widget.NestedScrollView>

0 个答案:

没有答案