1

好朋友..

我有这样的设计:
在此处输入图像描述
当出现键盘时,主滚动是非常必要的......如果我不这样做,按钮就看不到......问题是当我尝试在键盘处于活动状态的情况下在 Edittext 内移动时...... .我试过这个:

android:scrollbars="vertical"

和这个:

setMovementMethod(new ScrollingMovementMethod());

但还没有解决这个问题有人帮我吗?格拉克斯前进!

4

2 回答 2

0
Check this without using scroll bar:
add permission in menifest file for corresponding activity.
android:windowSoftInputMode="adjustPan"
于 2013-10-21T19:57:02.307 回答
0

请试试这个:

您的布局应类似于示例:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" >

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

    <EditText
        android:id="@+id/edittext"
        android:layout_width="200dp"
        android:layout_height="500dp"
        android:text="some long text"

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />
</LinearLayout>

</ScrollView>

在你的java中试试这个

EditText edit = (EditText)findViewById(R.id.edittext);
edit.setOnTouchListener(new OnTouchListener() {
    @Override
    public boolean onTouch(View v, MotionEvent event) {
        if (v.getId() == R.id.edittext) {
            v.getParent().requestDisallowInterceptTouchEvent(true);
            switch (event.getAction() & MotionEvent.ACTION_MASK) {
            case MotionEvent.ACTION_UP:
                v.getParent().requestDisallowInterceptTouchEvent(false);
                break;
            }
        }
        return false;
    }
});

这可能会有所帮助。

于 2013-10-21T21:27:51.540 回答