Android EditText Hint Size

前端 未结 12 1161
轮回少年
轮回少年 2020-11-28 06:21

How to reduce EditText Hint size?

12条回答
  •  失恋的感觉
    2020-11-28 07:03

    You can set simple HTML attributes to the hint string itself.

    See accepted answer here: Android EditText hint

    EDIT: just played with it myself, this worked for me:

    view.setHint(Html.fromHtml("" + 
                 getString(R.string.hint) + ""));
    

    This is a list of tags accepted by fromHtml: http://commonsware.com/blog/Android/2010/05/26/html-tags-supported-by-textview.html (though didn't work for me)

提交回复
热议问题