использование textIsSelectable в textView - PullRequest
0 голосов
/ 13 ноября 2018

Я использую android:textIsSelectable="true" для TextView.

Для включения копирование / выбор / вставка Для TextView все в порядке

Выпуск

Когда я открываю это действие, оно автоматически прокручивается до середины, как это Ссылка

Почему возникла эта проблема?

Это мой код компоновки.

<?xml version="1.0" encoding="utf-8"?>

<layout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:bind="http://schemas.android.com/apk/res/android" >

    <data>
            <variable
                name="aboutMbti"
                type="mbtitest.kiars.me.mbti.model.AboutMbti"/>  
    </data>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <androidx.cardview.widget.CardView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:cardBackgroundColor="@android:color/white"
            app:cardCornerRadius="2dp"
            app:cardElevation="5dp" >

            <androidx.core.widget.NestedScrollView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:fillViewport="true"
                android:fitsSystemWindows="true"
                android:scrollbarSize="1dp"
                android:scrollbarThumbVertical="@android:color/white">

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent">

                    <ImageView
                        android:id="@+id/img_splash_mtbi"
                        android:layout_width="match_parent"
                        android:layout_height="200dp"
                        android:layout_margin="3dp"
                        android:adjustViewBounds="true"
                        android:padding="5dp"
                        android:scaleType="centerCrop"
                        bind:imageUrl="@{aboutMbti.imageUrl}"/>

                    <TextView
                        android:id="@+id/txt_content_about_mtbi"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/img_splash_mtbi"
                        android:layout_margin="5dp"
                        android:textIsSelectable="true"
                        android:padding="@dimen/title_padding"
                        android:text="@{aboutMbti.textContent}"
                        android:textColor="@color/ques_title"
                        android:textSize="15sp"
                        android:textStyle="bold"/>

                </RelativeLayout>

            </androidx.core.widget.NestedScrollView>

        </androidx.cardview.widget.CardView>

    </RelativeLayout>

</layout>

Ответы [ 2 ]

0 голосов
/ 16 ноября 2018

Наконец, согласно комментарию https://stackoverflow.com/users/6891563/khemraj, я нахожу

Мей решение ...

Просто добавьте android:focusableInTouchMode="true" в ImageView, как это:

<?xml version="1.0" encoding="utf-8"?>

<layout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:bind="http://schemas.android.com/apk/res/android" >

    <data>
            <variable
                name="aboutMbti"
                type="mbtitest.kiars.me.mbti.model.AboutMbti"/>  
    </data>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <androidx.cardview.widget.CardView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:cardBackgroundColor="@android:color/white"
            app:cardCornerRadius="2dp"
            app:cardElevation="5dp" >

            <androidx.core.widget.NestedScrollView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:fillViewport="true"
                android:fitsSystemWindows="true"
                android:scrollbarSize="1dp"
                android:scrollbarThumbVertical="@android:color/white">

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent">

                    <ImageView
                        android:id="@+id/img_splash_mtbi"
                        android:layout_width="match_parent"
                        android:layout_height="200dp"
                        android:layout_margin="3dp"
                        android:adjustViewBounds="true"
                        android:padding="5dp"
android:focusableInTouchMode="true"
                        android:scaleType="centerCrop"
                        bind:imageUrl="@{aboutMbti.imageUrl}"/>

                    <TextView
                        android:id="@+id/txt_content_about_mtbi"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/img_splash_mtbi"
                        android:layout_margin="5dp"
                        android:textIsSelectable="true"
                        android:padding="@dimen/title_padding"
                        android:text="@{aboutMbti.textContent}"
                        android:textColor="@color/ques_title"
                        android:textSize="15sp"
                        android:textStyle="bold"/>

                </RelativeLayout>

            </androidx.core.widget.NestedScrollView>

        </androidx.cardview.widget.CardView>

    </RelativeLayout>

</layout>

Tnx Guys

0 голосов
/ 13 ноября 2018

Решение

Вы можете добавить android:focusableInTouchMode="true" или android:descendantFocusability="blocksDescendants" к дочернему макету в NestedScrollView

Попробуйте код ниже в вашем макете:

<android.support.v4.widget.NestedScrollView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    ...... >

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:focusableInTouchMode="true" >

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