我是
Android的新手,我想在Edittext中滚动文字,并在角落显示滚动条.我通过使用滚动文本
questionEntry.setScroller(new Scroller(myContext)); questionEntry.setMaxLines(1); questionEntry.setVerticalScrollBarEnabled(true); questionEntry.setMovementMethod(new ScrollingMovementMethod());
文本作品的scr0lling但是ScrollBar不会显示任何人都可以给我一个Sugesstion?
解决方法
这可能会帮助你.
<EditText android:id="@+id/edt_task_disc" android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="top" android:background="@drawable/text_aerea" android:hint="Task Discription" android:textSize="15sp" android:paddingLeft="5dp" android:maxHeight="35dp" android:scrollbars="vertical" />