I have an EditText on my layout. The following are the attributes that I have:
<EditText android:id="@+id/entryIdea" android:layout_width="fill_parent" android:layout_height="225sp" android:gravity="top" android:background="@android:drawable/editbox_background" android:scrollbars="vertical"/>
However, I can see the scroll bar, but I can not scroll it with the mouse / touch. I thought this might work if I put the appropriate listener since it works in a TextView. This is apparently not the case.
EditText et = (EditText)findViewById(R.id.entryIdea); et.setMovementMethod(new ScrollingMovementMethod());
Can you guys help me with this?
Thank you so much in advance. Seaya
android android-edittext scrollbar
Sammm
source share