ScrollView自动滚动到可选的TextView

时间:2014-04-12 18:38:30

标签: android android-layout textview scrollview

我在LinearLayout内有一个垂直ScrollView。在TextView LinearLayout中设置第三个selectable之前,一切正常。

更改后,它会自动滚动到第三个TextView。

可能导致问题的原因是什么?

之前之后更改:

enter image description here enter image description here

布局

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/roota_view"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_gravity="right"
    android:orientation="vertical" >

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingBottom="@dimen/activity_vertical_margin"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_vertical_margin"
        tools:context="com.saliherikci.poemnotebook.ReadPoemActivity$PlaceholderFragment" >

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:focusable="false"
            android:focusableInTouchMode="false"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/poemTitleTextView"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="Çanakkale Şehitlerine"
                android:textColor="@color/poem_title"
                android:textSize="24dp" />

            <TextView
                android:id="@+id/poemAuthorTextView"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_marginBottom="5dp"
                android:text="Mehmet Akif ERSOY"
                android:textAppearance="?android:attr/textAppearanceSmall"
                android:textSize="11dp" />

            <TextView
                android:id="@+id/poemContentTextView"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="Şu Boğaz harbi nedir? Var mı ki dünyâda eşi? "
                android:textColor="@color/poem_content"
                android:textIsSelectable="true"
                android:textSize="10dp" />
        </LinearLayout>
    </ScrollView>

    <LinearLayout
        android:id="@+id/fontSizeView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="top|right"
        android:background="@color/font_size_background"
        android:orientation="vertical"
        android:paddingBottom="5dp"
        android:paddingLeft="15dp"
        android:paddingRight="15dp"
        android:paddingTop="5dp"
        android:visibility="invisible" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="top|right"
            android:text="YAZI BOYUTU"
            android:textAppearance="?android:attr/textAppearanceSmall"
            android:textColor="#1a1a1a"
            android:textSize="8dp" />

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="top|right"
            android:layout_marginTop="5dp"
            android:dividerPadding="5dp"
            android:orientation="horizontal"
            android:showDividers="middle" >

            <ImageButton
                android:id="@+id/font_size_1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="bottom"
                android:background="@null"
                android:src="@drawable/ic_font_size_black_1_active" />

            <ImageButton
                android:id="@+id/font_size_2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="bottom"
                android:layout_marginLeft="20dp"
                android:background="@null"
                android:src="@drawable/ic_font_size_black_2_inactive" />

            <ImageButton
                android:id="@+id/font_size_3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="bottom"
                android:layout_marginLeft="20dp"
                android:background="@null"
                android:src="@drawable/ic_font_size_black_3_inactive" />

            <ImageButton
                android:id="@+id/font_size_4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="bottom"
                android:layout_marginLeft="20dp"
                android:background="@null"
                android:src="@drawable/ic_font_size_black_4_inactive" />

            <ImageButton
                android:id="@+id/font_size_5"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="20dp"
                android:background="@null"
                android:src="@drawable/ic_font_size_black_5_inactive" />
        </LinearLayout>
    </LinearLayout>

</FrameLayout>

4 个答案:

答案 0 :(得分:21)

您自动滚动到第三个TextView,因为SrollView拨打了ScrollView.scrollToChild upon ViewParent.requestChildFocus

As per the docs is

  

当这位父母的孩子想要集中注意力时调用

当您使用android:textIsSelectable="true"时,您基本上会调用TextView.setTextIsSelectable(true),这会调用View.setFocusableView.setFocusableInTouchMode

简而言之,要停止自动滚动到第三个TextView,请先给第一个注意力。

<TextView
    android:id="@+id/poemTitleTextView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:text="Çanakkale Şehitlerine"
    android:textColor="@color/poem_title"
    android:textSize="24dp"  />

答案 1 :(得分:1)

这是我的解决方案:

@Override
    protected int computeScrollDeltaToGetChildRectOnScreen(Rect rect) {
        return 0;
    }
When called requestChildFocus will not called scrollToChild()

答案 2 :(得分:0)

在我的例子中,我有一个 id anotherdate 1122 2020-03-30 2233 2020-03-30 ,它有一个 ScrollView 作为子元素,带有 marginTop(或父 paddingTop 或一些空间)。

第一次点击 TextView 时,TextView 会在顶部滚动子项。

为了避免这种跳转,我请求将注意力集中在孩子身上并滚动回 ScrollView

y=0

答案 3 :(得分:-2)

您可以尝试从poemContentTextView(您的第三个TextView)中删除此属性吗?

  

机器人:layout_weight =&#34; 22.14&#34;