终于找到工作了,算是转行之后的一个小节点,突然发现应该把工作的内容记录下来,一是怕自己对于生活的遗忘,二也是对于工作
的负责,毕竟新手一枚,很多东西不懂,都是一点点查,一点点做,记录下来也好以后翻看。
第一次用MarkDown编辑器,就先试试看吧。
这是一家做棋牌游戏的公司,当前的项目是开发一个平板的桌面游戏应用市场,Android这面主要实现市场的登陆、注册、支付、
客服等功能,已经是补发了,就不说没用的了,直接说这几天实现了什么功能吧。
主要实现了三个功能:
1. 跑马灯
基础的跑马灯很简单,用TextView控件实现,其他控件应该没这个需求,只要把下面的代码写进你需要实现的TextView控件的布局中就OK了:
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:singleLine="true"
//设置跑马灯
android:ellipsize="marquee"
//获取焦点
android:focusable="true"
//通过触摸获取焦点
android:focusableInTouchMode="true"
//播放次数为一直播放不停
android:marqueeRepeatLimit="marquee_forever"
//设置水平滚动
android:scrollHorizontally="true"
//设置单行显示
android:singleLine="true"
然后跑马灯要显示的内容只要setText()进去就好。