为什么我的布局不能用“adjustPan”移动得足够多?

问题描述 投票:5回答:4

我在我的应用程序中使用adjustPan时出现了一些问题,因为它无法正常工作。其他一些用户也遇到过这个问题,所以我认为分享这个问题很重要(Layout doesn't move up enough when clicking EditText)。

注意:我使用的是Android Studio,而我正在使用“即时应用”,因此文件的位置会有所不同。

当我在布局中使用adjustPan时,我的活动不会向上移动到EditText出现在软键盘上方的位置(请参阅图像了解详细信息)。无论您是在Manifest文件还是Java文件中使用它,都会出现相同的结果。

不仅如此,最奇怪的部分是状态栏变得透明,而应该在通知图标后面的深蓝色条有点下降(参见图像详细信息)。

Screenshot of issue

我尝试过多次尝试解决这个问题,比如使用adjustResizesetOnTouchListener,但我收到的这两个答案都没有解决这个问题。

我仍然无法弄清楚这个问题的原因,所以关于如何发现这个问题的原因的任何答案或评论也没关系。

这是我的一些代码:

清单文件:

<activity
        android:name=".Input_Activity"
        android:screenOrientation="portrait"
        android:windowSoftInputMode="adjustPan" />

Java文件:

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.WindowManager;

public class Input_Activity extends AppCompatActivity {


@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_input__activity);

    getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);
   }
}

XML文件:

<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"
tools:context=".Input_Activity">

<EditText
    android:layout_width="214dp"
    android:layout_height="wrap_content"
    android:layout_marginStart="8dp"
    android:layout_marginTop="8dp"
    android:layout_marginEnd="8dp"
    android:layout_marginBottom="8dp"
    android:inputType="number|numberDecimal"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.585"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="0.725" />

所有反馈将不胜感激。

android android-edittext android-statusbar window-soft-input-mode adjustpan
4个回答
3
投票

在类级别创建一个类似InputMethodManager方法管理器的对象。 将这些行添加到onCreate()方法中,

methodManager = (InputMethodManager) this.getSystemService(this.INPUT_METHOD_SERVICE);
        getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);

在你的onClick()方法中,显示键盘,

methodManager.toggleSoftInputFromWindow(
    your_view_name.getApplicationWindowToken(),
    InputMethodManager.SHOW_FORCED, 0);  

如果这个单词getApplicationWindowToken抛出一个错误,那么用getWindowToken替换它 希望能帮助到你。


0
投票

还需要在onTouch事件中添加以下代码,以便在出现软键盘时它会上升。例:

 editText.setTransformationMethod(WordBreakUtil.getInstance());
 editText.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE | WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);
            return false;
        }
    });

0
投票

我不确定答案。但尝试更换

<activity
    android:name=".Input_Activity"
    android:screenOrientation="portrait"
    android:windowSoftInputMode="adjustPan" />

<activity
    android:name=".Input_Activity"
    android:screenOrientation="portrait"
    android:windowSoftInputMode="adjustResize" />

在你的Android清单中。 Read here

希望这可以帮助!


0
投票
android:windowSoftInputMode

上面的属性可用于指定活动内容的内容。

下面的图像可以清除你更多的怀疑enter image description here

  • adjustPan:活动的主窗口未调整大小以便为软键盘腾出空间。相反,窗口的内容会自动平移,以便键盘不会遮挡当前焦点,用户可以随时看到他们正在键入的内容。这通常比调整大小更不合适,因为用户可能需要关闭软键盘以获得窗口的模糊部分并与其交互。
  • adjustResize:活动的主窗口始终调整大小,以便为屏幕上的软键盘腾出空间。

我认为没有必要添加下面添加的代码。

。getWindow()setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);

© www.soinside.com 2019 - 2024. All rights reserved.