Hint Alignment to the right of password EditText

前端 未结 8 1443
耶瑟儿~
耶瑟儿~ 2021-01-17 17:54

I\'m working on and activity with arabic language. I want the hint of the username and password to start from the right and I have no problem f typing started from the left

8条回答
  •  感情败类
    2021-01-17 18:37

    For AppCompatEditText edit text gravity start worked for me

    
    

    This will work only above api 16

    you can also try, Where you must have stored your current language I used this library com.akexorcist:localizationactivity

    if(currentLanguage.country.toLowerCase() == "arabic"){
            etPassword.gravity = GravityCompat.END
    }else{
            etPassword.gravity = GravityCompat.START
    }
    

提交回复
热议问题