- 浏览: 1177 次
最新评论
文章列表
最近工作中遇到需要TextView垂直滚动显示,看过N多帖子,方法不外乎两种。自定义TextView和用canvas绘制。这对于小编这个刚Android开发刚入门的菜鸟来说,无疑是高大上的方法。综合了这些帖子中的优点,总结出最简便的TextView方法。
int showContent = 0;// 显示的空间
public void handler() {
hyhandler.removeCallbacks(runnable);
currentIndex = currentIndex % noticeList.size();
//设置两 ...