当虚拟键盘可见时,多行 EditText 不垂直滚动
Multiline EditText not scrolling vertically when virtual Keyboard is visible
我有 EditText 可以根据需要包装内容;但是,当虚拟键盘在屏幕上可见时,我无法垂直滚动文本以显示顶部隐藏的行(例如,当我键入 "android:lines"+1 行时的第一行)。当我隐藏键盘时,它开始正常滚动。
布局文件:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/console_scroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="10dp"
android:id="@+id/repl_container">
<TextView
android:id="@+id/console"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textIsSelectable="true"
android:gravity="left|top"
/>
<ProgressBar
android:id="@+id/progress_running"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:indeterminate="true"
android:visibility="invisible"
style="Widget.ProgressBar.Small"
/>
<EditText
android:id="@+id/code_input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text|textNoSuggestions|textMultiLine"
android:imeOptions="actionNone"
android:imeActionLabel="@string/button_eval"
android:hint="@string/input_code_hint"
android:singleLine="true"
android:gravity="left|center_vertical"
android:layout_marginTop="10dp"
android:scrollHorizontally="false"
android:lines="5"
android:maxLines="100"
/>
<Button
android:id="@+id/button_eval"
android:text="@string/button_evaluate"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:gravity="center"
/>
</LinearLayout>
</ScrollView>
我正在 KK 4.4.4 上观察这个,如果它重要的话。关于为什么会发生这种情况的任何指示?
在您的 manifest.xml 中,在您的 activity 标签下添加 android:windowSoftInputMode="adjustPan|adjustResize"
。
像这样:
<activity android:name="......"
.....
android:windowSoftInputMode="adjustPan|adjustResize">
......
/>
我有 EditText 可以根据需要包装内容;但是,当虚拟键盘在屏幕上可见时,我无法垂直滚动文本以显示顶部隐藏的行(例如,当我键入 "android:lines"+1 行时的第一行)。当我隐藏键盘时,它开始正常滚动。
布局文件:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/console_scroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="10dp"
android:id="@+id/repl_container">
<TextView
android:id="@+id/console"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textIsSelectable="true"
android:gravity="left|top"
/>
<ProgressBar
android:id="@+id/progress_running"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:indeterminate="true"
android:visibility="invisible"
style="Widget.ProgressBar.Small"
/>
<EditText
android:id="@+id/code_input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text|textNoSuggestions|textMultiLine"
android:imeOptions="actionNone"
android:imeActionLabel="@string/button_eval"
android:hint="@string/input_code_hint"
android:singleLine="true"
android:gravity="left|center_vertical"
android:layout_marginTop="10dp"
android:scrollHorizontally="false"
android:lines="5"
android:maxLines="100"
/>
<Button
android:id="@+id/button_eval"
android:text="@string/button_evaluate"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:gravity="center"
/>
</LinearLayout>
</ScrollView>
我正在 KK 4.4.4 上观察这个,如果它重要的话。关于为什么会发生这种情况的任何指示?
在您的 manifest.xml 中,在您的 activity 标签下添加 android:windowSoftInputMode="adjustPan|adjustResize"
。
像这样:
<activity android:name="......"
.....
android:windowSoftInputMode="adjustPan|adjustResize">
......
/>