android:windowSoftInputMode =“adjustPan”不起作用

时间:2015-01-09 04:51:09

标签: android keyboard

我有愚蠢的问题请按照下面的图片

enter image description here

当我点击输入电子邮件时,它看到如下图,

enter image description here

现在问题来了,尽管使用 android:windowSoftInputMode =" adjustPan" android Lollipop主题和工具栏,

  1. 图像变小了。
  2. 电子邮件edittext应该显示在键盘上方,但它没有显示。
  3. 建议一些解决方案。

5 个答案:

答案 0 :(得分:9)

首先确保您在xml布局中提供了ScrollView

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >  
...

...

</ScrollView>

然后在activity内,确保您正在执行此类操作(此代码仅用于演示在何处使用getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);):

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.temp);
    getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);

    final EditText time = (EditText)findViewById(R.id.timeET);
    time.setOnTouchListener(new OnTouchListener() {

        public boolean onTouch(View v, MotionEvent event) {
            time.requestLayout();
            MyActivity.this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_UNSPECIFIED);

            return false;
        }
    });
    final EditText date = (EditText)findViewById(R.id.dateET);
    date.setOnTouchListener(new OnTouchListener() {

        public boolean onTouch(View v, MotionEvent event) {
            date.requestLayout();
            MyActivity.this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_UNSPECIFIED);

            return false;
        }
    });
     }

答案 1 :(得分:2)

我还添加&#34; adjustNothing&#34;。 我在AndroidManifest.xml中的活动是这样的:

...
<activity
   android:name=".MainActivity"
   android:windowSoftInputMode="stateHidden|adjustPan|adjustNothing">
</activity>
...

它对我有用。请试一试。

答案 2 :(得分:2)

在清单中设置configChanges属性,如下所示

<activity
    android:name="com.xyz.activityName"
    android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"/>

无需在清单中的任何位置添加adjustPan,也无需在编程上添加单个视图。

它永远不会让输入字段隐藏在软键盘后面。

答案 3 :(得分:1)

只需添加android manifest.xml

&#13;
&#13;
<activity
   android:name=".MainActivity"
   android:windowSoftInputMode="adjustPan|adjustNothing">
</activity>
&#13;
&#13;
&#13;

答案 4 :(得分:0)

确保主题中不包含values\Styles.xml。检查windowFullscreen是否相同。

如果您需要全屏,则创建另一个具有相同属性的主题,Manifest.xml除外,并将其用于所需的活动。

adjustResize中使用adjustPan代替assets/images/myimg.png

Source