如何更改EditText的光标滚动行为?

时间:2018-03-28 04:38:20

标签: android android-layout android-softkeyboard

我刚做了一个超级基本的测试,我所做的就是采用hello world样本模板并添加一个多行文本对象。文本对象位于屏幕的底部。当我输入多行文本,然后移动光标时,整个屏幕向下滚动,因此软键盘开始掩盖文本框。我正在尝试(在一个更复杂的应用程序,但有相同的问题,因此使用基本的测试用例)让行为匹配默认的消息传递应用程序:如果您移动光标,它不会平移整个视口,并且只会根据需要滚动文本对象。这在视觉上更容易解释。

enter image description here

这里我们有3行,我要向上滚动(如果我使用箭头键或者使用小泪滴选择器那么无关紧要)。

enter image description here

在这里,我抓住了小选择器泪珠的东西并向上移动了2行:注意整个窗口已向下滚动。我不希望这种行为。我正在寻找的是默认消息传递应用程序:

enter image description here

请注意移动光标不会滚动视口。它根本不滚动。如果我有太多的文字适合,它只会根据需要滚动编辑文本的内容,而不是滚动任何其他内容。

我如何获得这种行为?如果它很重要,这个简单的测试就是布局的样子。

enter image description here

编辑:根据请求,我发布了xml和java。请注意,这只是添加了edittext的默认Android Studio hello world项目。 的AndroidManifest.xml:

    <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.jeffw.myapplication">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name"
            android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

content_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="com.example.jeffw.myapplication.MainActivity"
    tools:showIn="@layout/activity_main">

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintHorizontal_bias="0.529"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.705" />

    <EditText
        android:id="@+id/editText"
        android:layout_width="363dp"
        android:layout_height="109dp"
        android:layout_marginTop="8dp"
        android:ems="10"
        android:inputType="textMultiLine"
        app:layout_constraintTop_toBottomOf="@+id/textView"
        tools:layout_editor_absoluteX="11dp" />
</android.support.constraint.ConstraintLayout>

activity_main.xml中:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.jeffw.myapplication.MainActivity">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

    </android.support.design.widget.AppBarLayout>

    <include layout="@layout/content_main" />

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|end"
        android:layout_margin="@dimen/fab_margin"
        app:srcCompat="@android:drawable/ic_dialog_email" />

</android.support.design.widget.CoordinatorLayout>

和java代码:

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);

        FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
        fab.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
                        .setAction("Action", null).show();
            }
        });
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_main, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();

        //noinspection SimplifiableIfStatement
        if (id == R.id.action_settings) {
            return true;
        }

        return super.onOptionsItemSelected(item);
    }
}

2 个答案:

答案 0 :(得分:1)

要实现此行为,您应将此android:windowSoftInputMode="adjustPan"android:isScrollContainer="true"添加到清单文件中的活动。

有关详细信息,您可以查看开发人员文档。 https://developer.android.com/guide/topics/manifest/activity-element.html#wsoft

<强>更新

将此更新为您的清单android:windowSoftInputMode="adjustResize|stateHidden" ..我使用了RelativeLayout而不是android.support.constraint.ConstraintLayout,它对我来说运作正常。

答案 1 :(得分:0)

试试这个:

// SCROLL VIEW HACK
// BOGUS
ScrollView scrollView = (ScrollView)findViewById(R.id.scrollView);
scrollView .setDescendantFocusability(ViewGroup.FOCUS_BEFORE_DESCENDANTS);
scrollView .setFocusable(false);
scrollView .setFocusableInTouchMode(false);
scrollView .setOnTouchListener(new View.OnTouchListener() {
    @Override
    public boolean onTouch(View v, MotionEvent event) {
        v.requestFocusFromTouch();
        return false;
    }
});

我觉得它对你很有帮助。