Android Auto Scrolling EditText Hint

后端 未结 1 1099
南旧
南旧 2021-01-16 23:51

problem with making edittext scrollable

there is mentioned that it is not scrollable with singleLine=true.

So i have 2 options:

  1. I check if t

相关标签:
1条回答
  • 2021-01-17 00:15

    Make your EditText Scrollable like this:

    EditText yourEditText = new EditText(context);
    yourEditText.setScroller(new Scroller(context)); 
    yourEditText.setMaxLines(1); 
    yourEditText.setVerticalScrollBarEnabled(true); 
    yourEditText.setMovementMethod(new ScrollingMovementMethod());
    
    0 讨论(0)
提交回复
热议问题