EditText hint doesn't show

前端 未结 10 1745
生来不讨喜
生来不讨喜 2020-12-05 04:23

My EditText configured as follows won\'t show the hint:



        
10条回答
  •  暖寄归人
    2020-12-05 04:37

    Using android:ellipsize="end" resolves the obvious platform bug. Unfortunately, Xperias still misbehave :(

    I found no other solution than to:

    if (android.os.Build.MANUFACTURER.matches(".*[Ss]ony.*"))
          editText.setGravity(Gravity.LEFT);
    else
          editText.setGravity(Gravity.CENTER);
    

提交回复
热议问题