1.ListViewDemo使用方法小demo
https://github.com/Way123Ne/androidUI/tree/master/ListViewDemo
2.DatePicker使用方法小demo
https://github.com/Way123Ne/androidUI/tree/master/DatePickerDemo
3.Flag使用方法小demo
1>boolean类型默认值false,使用位置:成员变量或静态变量
2>flag为return true跳转下一页,flag为return false 弹屏提示
3>完整源码:https://github.com/Way123Ne/android/tree/master/FlagDemo
4.return在android中的作用小demo
https://github.com/Way123Ne/android/tree/master/ReturnInAndroidDemo
5.画布Canvns类使用小demo
https://github.com/Way123Ne/android/tree/master/CanvasDemo
6.Notification通知类小demo
1.主要应用点:PendingIntent.getActivity() && NotificationManager.notify()
2.完整源码: https://github.com/Way123Ne/android/tree/master/NotifyTest
7.属性动画小demo
1>动画普及:
*Frame animation【逐帧】:一系列图片按照一定的顺序展示的过程
*Tween animation【补间】:通过对控件实现透明度、尺寸、位置、旋转,实现连续的动画效果
*Property animation【属性】:Api11出现,通过控制对象的属性值控制一切对象的动画
例:控制对象在x、y轴的滑动
2>动画主要实现方式:
*Frame animation
*Tween animation:TranslateAnimation类
*Property animation:ObjectAnimator类
3>完整源码: https://github.com/Way123Ne/android/tree/master/PropertyAnimationDemo
8.再见findViewById()~你好ButterKnife小demo
https://github.com/Way123Ne/android/tree/master/ButterKnifeDemo