android向下滚动

时间:2010-04-19 12:48:37

标签: android scroll textview

我有文本区域,然后是“确定”和“取消”按钮。 当我点击文本区域键盘出现并聚焦在文本区域时,按钮会隐藏在键盘后面。

我希望当文本区域获得焦点时稍微滚动一下,并在选择文本区域ID时显示底部按钮。

3 个答案:

答案 0 :(得分:9)

我自己修理了:D以下是代码

当textfield获得焦点时,我调用了以下方法

private final void focusOnButtons(){
        new Handler().postDelayed(new Runnable() {
            @Override
            public void run() {
                ScrollView sv = (ScrollView)findViewById(R.id.scrl);
                sv.scrollTo(0, sv.getBottom());
            }
        },1000);
    }

答案 1 :(得分:4)

您可以尝试在ScrollView中包装现有布局:
https://developer.android.com/reference/android/widget/ScrollView.html
您的布局xml文件可能如下所示:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/ScrollView01" android:layout_width="wrap_content" 
        android:layout_height="wrap_content">
    <LinearLayout 
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
        <EditText android:text="@string/hello" android:id="@+id/EditText01" 
            android:layout_width="wrap_content" android:layout_height="wrap_content">
        </EditText>
        <LinearLayout 
            android:orientation="horizontal"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
            <Button android:text="@+id/Button01" android:id="@+id/Button01" 
                android:layout_width="wrap_content" android:layout_height="wrap_content">
            </Button>
            <Button android:text="@+id/Button02" android:id="@+id/Button02" 
                android:layout_width="wrap_content" android:layout_height="wrap_content">
            </Button>
        </LinearLayout>
    </LinearLayout>
</ScrollView>

评论回复:
您可能需要查看此页面:
https://developer.android.com/training/keyboard-input/index.html

我认为您想要的结果可以通过在Scrollview外部移动按钮并在活动上设置android:windowSoftInputMode="adjustResize"来完成。

答案 2 :(得分:0)

我会从解决方案中调整一些事项:

1.-使用smoothScroll而不是硬滚动

2.-将延迟从1000减少到300(足够)

    OnFocusChangeListener onFocus = new OnFocusChangeListener() {
        @Override
        public void onFocusChange(View v, boolean hasFocus) {
            new Handler().postDelayed(new Runnable() {
                @Override
                public void run() {
                    scrollView.smoothScrollTo(0, scrollView.getBottom());
                }
            },300);
        }
    };