在Horizo​​ntalScrollView上聚焦EditText会导致ScrollView隐藏EditText

时间:2014-07-22 14:55:55

标签: android android-edittext scroll horizontalscrollview

我有一个水平滚动视图占据了屏幕的右半部分。在它上面,我有一个EditText。当我选择EditText来编辑文本时,Horizo​​ntalScrollView会向右滚动。我猜它正在尝试将EditText放在最左边的位置。无论如何,由于Horizo​​ntalScrollView占据了屏幕的右侧,通过这样做,我再也看不到EditText,因为它现在被我放在屏幕左侧的内容所掩盖。当我专注于布局中的某些内容时,如何防止Horizo​​ntalScrollView自动滚动?

感谢。非常感谢。

HALP

编辑:发布代码。我实际上是根据生成的信息创建我的EditText,所以这不是它实际上的样子,但它应该捕获ideai。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <View
        android:layout_leftOf="@+id/Anchor"/>


    <View
        android:id="@+id/Anchor"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_centerHorizontal="true"
        android:background="#000" />

    <ScrollView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_rightOf="@+id/Anchor"
            android:fillViewport="true" >

            <HorizontalScrollView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:fillViewport="true" >

                <TableLayout
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:padding="10dp" >

                  <TableRow>
                     <EditText>

                     ABOVE is the view that is going to the left

                     MOre views which would cause Scrolling to the right

                  </TableRow>
                </TableLayout>

            </HorizontalScrollView>
        </ScrollView>

</RelativeLayout>

1 个答案:

答案 0 :(得分:5)

如果使用,请在XML中使用EditText          机器人:比重=“中心” 删除它