Tagged Questions
3
votes
2answers
3k views
Android keyboard obscures EditText
In my application, when I click on an EditText view, the virtual keyboard obscures the view, so I can't see my edits. How can I resolve this programatically?
2
votes
1answer
82 views
how to enable vertical scrollbar of an edittext programmatically
I'm trying to implement android:scrollbars="vertical" in XML by Java code.
I've tried method setVerticalScrollBarEnabled(true) but it doesn't work.
Anyone can give me a suggestion?
Thanks in advance.
0
votes
0answers
205 views
EditText horizontal scrollbar doesn't corresponds text size/amount
I have EditText with both scrollbars
android:scrollbars="horizontal|vertical". Vertical one is good (size of that scrollbar corresponds amount of text). Horizontal one is very small no matter of text ...
0
votes
2answers
2k views
Enabling scrollbar in EditText Android
I have an EditText on my layout. Below are the attributes I currently have:
<EditText
android:id="@+id/entryIdea"
android:layout_width="fill_parent"
android:layout_height="225sp"
...