Edittext error message shown incorrectly

Tested on htc one v android 4.0.3

Activity:

    import android.support.v7.app.ActionBarActivity;
    import android.os.Bundle;
    import android.widget.EditText;


    public class MainActivity extends ActionBarActivity {

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

            EditText editText = (EditText) findViewById(R.id.editText);
            editText.setError("Error msg");
        }

    }

      

Xml:

  <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

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

            <EditText
                android:id="@+id/editText"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" />

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

      

Steps:

enter image description hereenter image description hereenter image description here

Expected Behavior: The error message is displayed in the correct position. Does anyone know how to fix this? Thank!

+3


source to share


1 answer


Try this: Try this:



InputMethodManager im = (InputMethodManager) getSystemService(Service.INPUT_METHOD_SERVICE);

/*
Instantiate and pass a callback
*/
SoftKeyboard softKeyboard;
softKeyboard = new SoftKeyboard(mainLayout, im);
softKeyboard.setSoftKeyboardCallback(new SoftKeyboard.SoftKeyboardChanged() {

@Override
    public void onSoftKeyboardHide() 
{
        // Here request your errorMessage
    }
@Override
    public void onSoftKeyboardShow() 
{
        // Here request your errorMessage
    }   
});

      

0


source







All Articles