提供了三种动画效果:逐帧动画(frame-by-frame animation),这种动画和GIF一样,一帧一帧的显示来组成动画效果;布局动画(layout animation),这种动画用来设置layout内的所有UI控件;控件动画(view animation),这种是应用到具体某个view上的动画。

在这三种动画实现中逐帧动画是最简单的,而控件动画是有点复杂的,要涉及到线性代数中的矩阵运算,下面就由易到难逐个介绍,先来看看逐帧动画如何实现。
逐帧动画
逐帧动画是通过 OPhone中的android.graphics.drawable.AnimationDrawable类来实现的,在该类中保存了帧序列以及显示的时间,为了简化动画的创建OPhone提供了一种通过XML来创建逐帧动画的方式,这样把动画的创建和代码分来以后如果需要修改动画内容,只需要修改资源文件就可以了不用修改代码,简化开发维护工作。在res/drawable/文件夹下创建一个XML文件,下面是一个示例文件(res\drawable\qq_animation.xml):
view plain copy to clipboard print ?
  1. <animation-list
  2. xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:oneshot="false">
  4. <item android:drawable="@drawable/qq001" android:duration="80"/>
  5. <item android:drawable="@drawable/qq002" android:duration="80"/>
  6. <item android:drawable="@drawable/qq003" android:duration="80"/>
  7. <item android:drawable="@drawable/qq004" android:duration="80"/>
  8. <item android:drawable="@drawable/qq005" android:duration="80"/>
  9. <item android:drawable="@drawable/qq006" android:duration="80"/>
  10. <item android:drawable="@drawable/qq007" android:duration="80"/>
  11. <item android:drawable="@drawable/qq008" android:duration="80"/>
  12. </animation-list>
在上面的定义中通过animation-list来指定这是个AnimationDrawable动画定义,里面的item来指定每帧图片和显示时间(单位为毫秒),帧显示的顺序就是item定义的顺序。如果android:oneshot设置为true表明该动画只播放一次,否则该动画会循环播放。这些设置也可以通过AnimationDrawable提供的函数来设置。动画中引用的文件为QQ表情文件,包含在示例项目代码中。
然后在layout中定义一个ImageView来显示上面定义的AnimationDrawable, layout代码如下(res\layout\main.xml):
view plain copy to clipboard print ?
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:orientation="vertical"
  5. android:layout_width="fill_parent"
  6. android:layout_height="fill_parent">
  7. <ImageView
  8. android:id="@+id/animation_view"
  9. android:layout_width="fill_parent"
  10. android:layout_height="wrap_content"
  11. android:src="@drawable/qq_animation" />
  12. <Button
  13. android:id="@+id/animation_btn"
  14. android:layout_width="fill_parent"
  15. android:layout_height="wrap_content"
  16. android:text="@string/start_animation" />
  17. <Button
  18. android:id="@+id/one_shot_btn"
  19. android:layout_width="fill_parent"
  20. android:layout_height="wrap_content"
  21. android:text="@string/play_once" />
  22. </LinearLayout>
注意这里的ImageView 通过android:src="@drawable/qq_animation"引用了前面定义的AnimationDrawable,下面是两个按钮用来控制播放动画和设置AnimationDrawable的oneshot属性。
下面就是控制动画播放的类代码(src\org\goodev\animation\AnimActivity.java):
view plain copy to clipboard print ?
  1. public class AnimActivity extends Activity {
  2. /** Called when the activity is first created. */
  3. AnimationDrawable mAd;
  4. Button mPlayBtn;
  5. Button mOneShotBtn;
  6. boolean mIsOneShot;
  7. @Override
  8. public void onCreate(Bundle savedInstanceState) {
  9. super.onCreate(savedInstanceState);
  10. setContentView(R.layout.main);
  11. ImageView iv = (ImageView) findViewById(R.id.animation_view);
  12. mAd = (AnimationDrawable) iv.getDrawable();
  13. mPlayBtn = (Button) findViewById(R.id.animation_btn);
  14. mPlayBtn.setOnClickListener(new OnClickListener() {
  15. @Override
  16. public void onClick(View view) {
  17. startAnimation();
  18. }
  19. });
  20. mOneShotBtn = (Button) findViewById(R.id.one_shot_btn);
  21. mOneShotBtn.setOnClickListener(new OnClickListener() {
  22. @Override
  23. public void onClick(View view) {
  24. if (mIsOneShot) {
  25. mOneShotBtn.setText("Play Once");
  26. } else {
  27. mOneShotBtn.setText("Play Repeatly");
  28. }
  29. mAd.setOneShot(!mIsOneShot);
  30. mIsOneShot = !mIsOneShot;
  31. }
  32. });
  33. }
  34. /**
  35. * 通过AnimationDrawable的start函数播放动画,
  36. * stop函数停止动画播放,
  37. * isRunning来判断动画是否正在播放。
  38. */
  39. public void startAnimation() {
  40. if (mAd.isRunning()) {
  41. mAd.stop();
  42. } else {
  43. mAd.stop();
  44. mAd.start();
  45. }
  46. }
  47. }
布局动画介绍
布局动画和逐帧动画是由本质的不同的,逐帧动画是一帧帧图片组成的,而布局动画是渐变动画,OPhone通过改变UI的属性(大小、位置、透明度等)来实现动画效果。
在OPhone显示系统中,每个view都对应一个矩阵来控制该view显示的位置,通过不同的方式来改变该控制矩阵就可以实现动画效果,例如旋转、移动、缩放等。
不同的矩阵变换有不同的类来实现,android.view.animation.Animation类代表所有动画变换的基类,目前在OPhone系统中有如下五个实现(都位于android.view.animation包中):
  • l AlphaAnimation:实现alpha渐变,可以使界面逐渐消失或者逐渐显现
  • l TranslateAnimation:实现位置移动渐变,需要指定移动的开始和结束坐标
  • l ScaleAnimation: 实现缩放渐变,可以指定缩放的参考点
  • l RotateAnimation:实现旋转渐变,可以指定旋转的参考点,默认值为(0,0)左上角。
  • l AnimationSet: 代表上面的渐变组合
有一个和渐变动画效果关系比较密切的类android.view.animation.Interpolator,该类定义了渐变动画改变的速率,可以设置为加速变化、减速变化或者重复变化。关于Interpolator详细信息请参考 文档介绍。另外在OPhone SDK中的android.jar文件中也有各种interpolator的定义,感兴趣的可以参考android.jar中的\res\anim目录中的文件。
动画的实现及应用
上面这些渐变方式也可以在XML文件中定义,这些文件位于res\anim目录下。根元素为set代表AnimationSet,里面可以有多个渐变定义,如下是alpha渐变的定义(res\anim\alpha_anim.xml):
view plain copy to clipboard print ?
  1. <set xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:interpolator="@android:anim/decelerate_interpolator">
  3. <alpha
  4. android:fromAlpha="0.0"
  5. android:toAlpha="1.0"
  6. android:duration="1000" />
  7. </set>
如果只定义一种渐变效果,则可以去除set元素,如下:
view plain copy to clipboard print ?
  1. <alpha
  2. xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:interpolator="@android:anim/accelerate_interpolator"
  4. android:fromAlpha="0.0"
  5. android:toAlpha="1.0"
  6. android:duration="1000" />
上面定义的alpha从0(透明)到1(不透明)渐变,渐变时间为1000毫秒。
view plain copy to clipboard print ?
  1. <scale
  2. xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:interpolator="@android:anim/accelerate_interpolator"
  4. android:fromXScale="1"
  5. android:toXScale="1"
  6. android:fromYScale="0.1"
  7. android:toYScale="1.0"
  8. android:duration="500"
  9. android:pivotX="50%"
  10. android:pivotY="50%"
  11. android:startOffset="100" />
上面是一个缩放渐变的定义, from... 和 to... 分别定义缩放渐变的开始和结束的缩放倍数,上面定义X轴都为1不缩放,而Y轴从0.1到1逐渐放大(开始高度为正常大小的0.1然后逐渐放大到正常大小)。缩放持续的时间为500毫秒,缩放的中心点(通过pivotX,pivotY定义 )在控件的中间位置。startOffset指定了在缩放开始前等待的时间。
view plain copy to clipboard print ?
  1. <rotate
  2. xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:interpolator="@android:anim/accelerate_interpolator"
  4. android:fromDegrees="0.0"
  5. android:toDegrees="360"
  6. android:pivotX="50%"
  7. android:pivotY="50%"
  8. android:duration="500" />
上面定义了旋转变换,从 0度变化到360度(旋转一周),时间为500毫秒,变换的中心点位控件的中心位置。
view plain copy to clipboard print ?
  1. <translate
  2. xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:interpolator="@android:anim/accelerate_interpolator"
  4. android:fromYDelta="-100%"
  5. android:toYDelta="0"
  6. android:duration="500" />
上面定义了位置变换,实现一种下落的效果。
把上面不同的定义放到 set中就可以实现不同的组合动画效果了,下面的示例实现了控件在下落的过程中逐渐显示的效果(res\anim\translate_alpha_anim.xml):
view plain copy to clipboard print ?
  1. <set xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:interpolator="@android:anim/decelerate_interpolator">
  3. <translate
  4. android:fromYDelta="-100%"
  5. android:toYDelta="0"
  6. android:duration="500" />
  7. <alpha
  8. android:fromAlpha="0.0"
  9. android:toAlpha="1.0"
  10. android:duration="500" />
  11. </set>
要把上面定义的动画效果应用的layout中,就要使用另外一个类:android.view.animation.LayoutAnimationController。该类把指定的效果应用到layout中的每个控件上去,使用layoutAnimation元素在 xml文件中定义
view plain copy to clipboard print ?
  1. LayoutAnimationController,该文件同样位于res/anim/目录下,下面是一个示例(res\anim\layout_anim_ctrl.xml):
  2. <layoutAnimation
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:delay="30%"
  5. android:animationOrder="reverse"
  6. android:animation="@anim/translate_alpha_anim" />
上面通过animation指定了使用哪个动画(通过修改该值可以测试不同的动画效果),animationOrder指定了通过逆序的方式应用动画(在垂直的LinearLayout中就是从下往上逐个控件应用),delay指定了layout中的每个控动画的延时时间为动画持续总时间的30%。
定义好LayoutAnimationController后就可以在Layout中使用了,这里使用一个ListView做演示,布局代码如下:
view plain copy to clipboard print ?
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:orientation="vertical"
  5. android:layout_width="fill_parent"
  6. android:layout_height="fill_parent">
  7. <ListView
  8. android:id="@+id/list"
  9. android:layout_width="fill_parent"
  10. android:layout_height="fill_parent"
  11. android:persistentDrawingCache="animation|scrolling"
  12. android:layoutAnimation="@anim/layout_anim_ctrl" />
  13. </LinearLayout>
上面的代码中通过layoutAnimation指定了前面定义的LayoutAnimationController,为了使动画效果比较流畅这里还通过persistentDrawingCache设置了控件的绘制缓存策略,一共有4中策略:
PERSISTENT_NO_CACHE 说明不在内存中保存绘图缓存;
PERSISTENT_ANIMATION_CACHE 说明只保存动画绘图缓存;
PERSISTENT_SCROLLING_CACHE 说明只保存滚动效果绘图缓存
PERSISTENT_ALL_CACHES 说明所有的绘图缓存都应该保存在内存中。
在Activity中并没有什么变化,代码如下(src\org\goodev\animation\ListActivity.java):
view plain copy to clipboard print ?
  1. public class ListActivity extends Activity {
  2. String[] mListItems =
  3. { "Item 1", "Item 2", "Item 3", "Item 4", "Item 5"};
  4. @Override
  5. public void onCreate(Bundle savedInstanceState) {
  6. super.onCreate(savedInstanceState);
  7. setContentView(R.layout.list);
  8. ArrayAdapter<String> listItemAdapter =
  9. new ArrayAdapter<String>(this,
  10. android.R.layout.simple_list_item_1, mListItems);
  11. ListView lv = (ListView) this.findViewById(R.id.list);
  12. lv.setAdapter(listItemAdapter);
  13. }
  14. }
控件动画介绍
其实控件动画也是布局动画的一种,可以看做是自定义的动画实现,布局动画在XML中定义OPhone已经实现的几个动画效果(AlphaAnimation、TranslateAnimation、ScaleAnimation、RotateAnimation)而控件动画就是在代码中继承android.view.animation.Animation类来实现自定义效果。
控件动画实现
通过重写Animation的 applyTransformation (float interpolatedTime, Transformation t)函数来实现自定义动画效果,另外一般也会实现 initialize (int width, int height, int parentWidth, int parentHeight)函数,这是一个回调函数告诉Animation目标View的大小参数,在这里可以初始化一些相关的参数,例如设置动画持续时间、设置Interpolator、设置动画的参考点等。
OPhone在绘制动画的过程中会反复的调用applyTransformation 函数,每次调用参数interpolatedTime值都会变化,该参数从0渐变为1,当该参数为1时表明动画结束。通过参数Transformation 来获取变换的矩阵(matrix),通过改变矩阵就可以实现各种复杂的效果。关于矩阵的详细信息可以参考android.graphics.Matrix的 API文档( http://androidappdocs-staging.appspot.com/reference/android/graphics/Matrix.html )。
下面来看一个简单的实现:
view plain copy to clipboard print ?
  1. class ViewAnimation extends Animation {
  2. public ViewAnimation() {
  3. }
  4. @Override
  5. public void initialize(int width, int height, int parentWidth, int parentHeight) {
  6. super.initialize(width, height, parentWidth, parentHeight);
  7. setDuration(2500);
  8. setFillAfter(true);
  9. setInterpolator(new LinearInterpolator());
  10. }
  11. @Override
  12. protected void applyTransformation(float interpolatedTime,
  13. Transformation t) {
  14. final Matrix matrix = t.getMatrix();
  15. matrix.setScale(interpolatedTime, interpolatedTime);
  16. }
  17. }
上面的代码很简单,在initialize函数中设置变换持续的时间2500毫秒,然后设置Interpolator为LinearInterpolator并设置FillAfter为true这样可以在动画结束的时候保持动画的完整性。在applyTransformation函数中通过MatrixsetScale函数来缩放,该函数的两个参数代表X、Y轴缩放因子,由于interpolatedTime是从0到1变化所在这里实现的效果就是控件从最小逐渐变化到最大。调用View的startAnimation函数(参数为Animation)就可以使用自定义的动画了。代码如下(src\org\goodev\animation\ViewAnimActivity.java):
view plain copy to clipboard print ?
  1. public class ViewAnimActivity extends Activity {
  2. Button mPlayBtn;
  3. ImageView mAnimImage;
  4. @Override
  5. public void onCreate(Bundle savedInstanceState) {
  6. super.onCreate(savedInstanceState);
  7. setContentView(R.layout.view_anim_layout);
  8. mAnimImage = (ImageView) this.findViewById(R.id.anim_image);
  9. mPlayBtn = (Button) findViewById(R.id.play_btn);
  10. mPlayBtn.setOnClickListener(new OnClickListener() {
  11. @Override
  12. public void onClick(View view) {
  13. mAnimImage.startAnimation(new ViewAnimation());
  14. }
  15. });
  16. }
  17. }
布局代码如下(res\layout\view_anim_layout.xml):
view plain copy to clipboard print ?
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:orientation="vertical"
  5. android:layout_width="fill_parent"
  6. android:layout_height="fill_parent"
  7. >
  8. <Button
  9. android:id="@+id/play_btn"
  10. android:layout_width="fill_parent"
  11. android:layout_height="wrap_content"
  12. android:text="Start Animation"
  13. />
  14. <ImageView
  15. android:id="@+id/anim_image"
  16. android:persistentDrawingCache="animation|scrolling"
  17. android:layout_width="fill_parent"
  18. android:layout_height="wrap_content"
  19. android:src="@drawable/ophone"
  20. />
  21. </LinearLayout>
从上图可以看到 ImageView是从左上角出来的,这是由于没有指定矩阵的变换参考位置,默认位置为(0,0),如果要想让ImageView从中间出来,可以通过矩阵变换来把参考点移动到中间来,如下实现:
view plain copy to clipboard print ?
  1. class ViewAnimation extends Animation {
  2. int mCenterX;//记录View的中间坐标
  3. int mCenterY;
  4. public ViewAnimation() {
  5. }
  6. @Override
  7. public void initialize(int width, int height, int parentWidth, int parentHeight) {
  8. super.initialize(width, height, parentWidth, parentHeight);
  9. //初始化中间坐标值
  10. mCenterX = width/2;
  11. mCenterY = height/2;
  12. setDuration(2500);
  13. setFillAfter(true);
  14. setInterpolator(new LinearInterpolator());
  15. }
  16. @Override
  17. protected void applyTransformation(float interpolatedTime,
  18. Transformation t) {
  19. final Matrix matrix = t.getMatrix();
  20. matrix.setScale(interpolatedTime, interpolatedTime);
  21. //通过坐标变换,把参考点(0,0)移动到View中间
  22. matrix.preTranslate(-mCenterX, -mCenterY);
  23. //动画完成后再移回来
  24. matrix.postTranslate(mCenterX, mCenterY);
  25. }
  26. }
preTranslate函数是在缩放前移动而postTranslate是在缩放完成后移动。现在ImageView就是从中间出来的了。这样通过操作Matrix 可以实现各种复杂的变换。由于操作Matrix是实现动画变换的重点,这里简单介绍下Matrix的常用操作:
  • Reset():重置该矩阵
  • setScale():设置矩阵缩放
  • setTranslate():设置矩阵移动
  • setRotate():设置矩阵旋转
  • setSkew(): 使矩阵变形(扭曲)
矩阵也可以相乘,从线性代数中的矩阵运算中知道M1*M2 和M2*M1 是不一样的,所以在使用concat(m1,m2)函数的时候要注意顺序。
另外需要注意的是Matrix提供的API在OPhone1.0和OPhone1.5中是有变化的,请注意查看相关文档。
OPhone还提供了一个用来监听Animation事件的监听接口AnimationListener,如果你对Animatioin何时开始、何时结束、何时重复播放感兴趣则可以实现该接口。该接口提供了三个回调函数:onAnimationStart、onAnimationEnd、onAnimationRepeat。
使用Camera实现3D变换效果
最后来简单介绍下OPhone提供的 android.graphics.Camera类,通过该类可以在2D条件下实现3D动画效果,该类可以看做一个视图显示的3D空间,然后可以在里面做各种操作。把上面的ViewAnimation修改为如下实现可以具体看看Camera的功能:
view plain copy to clipboard print ?
  1. class ViewAnimation extends Animation {
  2. int mCenterX;//记录View的中间坐标
  3. int mCenterY;
  4. Camera camera = new Camera();
  5. public ViewAnimation() {
  6. }
  7. @Override
  8. public void initialize(int width, int height, int parentWidth,
  9. int parentHeight) {
  10. super.initialize(width, height, parentWidth, parentHeight);
  11. //初始化中间坐标值
  12. mCenterX = width/2;
  13. mCenterY = height/2;
  14. setDuration(2500);
  15. setFillAfter(true);
  16. setInterpolator(new LinearInterpolator());
  17. }
  18. @Override
  19. protected void applyTransformation(float interpolatedTime,
  20. Transformation t) {
  21. // final Matrix matrix = t.getMatrix();
  22. // matrix.setScale(interpolatedTime, interpolatedTime);
  23. // //通过坐标变换,把参考点(0,0)移动到View中间
  24. // matrix.preTranslate(-mCenterX, -mCenterY);
  25. // //动画完成后再移回来
  26. // matrix.postTranslate(mCenterX, mCenterY);
  27. final Matrix matrix = t.getMatrix();
  28. camera.save();
  29. camera.translate(0.0f, 0.0f, (1300 - 1300.0f * interpolatedTime));
  30. camera.rotateY(360 * interpolatedTime);
  31. camera.getMatrix(matrix);
  32. matrix.preTranslate(-mCenterX, -mCenterY);
  33. matrix.postTranslate(mCenterX, mCenterY);
  34. camera.restore();
  35. }
  36. }
camera.translate(0.0f, 0.0f, (1300 - 1300.0f * interpolatedTime))在第一次调用的时候interpolatedTime值为0,相当于把ImageView在Z轴后移1300像素,然后逐步的往前移动到0,同时camera.rotateY(360 * interpolatedTime)函数又把ImageView沿Y轴翻转360度

Animation动画效果的实现相关推荐

  1. android中设置Animation 动画效果

    在 Android 中, Animation 动画效果的实现可以通过两种方式进行实现,一种是 tweened animation 渐变动画,另一种是 frame by frame animation ...

  2. animation动画效果 1002 css3

    animation动画效果 1002 css3 什么是动画 使用步骤 如何定义动画 @keyframes 动画名称{from{属性:值}percentage{属性:值}to{属性:值} } 或者 @k ...

  3. android编程xml动画,Android中xml设置Animation动画效果详解

    在Android中,Animation动画效果的实现可以通过两种方式进行实现,一种是tweened animation渐变动画,另一种是frame by frame animation画面转换动画. ...

  4. CSS animation动画效果实现精灵图、雪碧图动画,多动画应用

    CSS animation动画效果实现精灵图.雪碧图动画,多动画应用 素材下载 分析图片动画过程 图片可以分成4*6=24 小图片也就是24帧 方法1 可以把每一行成一个动画,所以可以拆分4个动画 方 ...

  5. Android Animation动画效果简介

    AlphaAnimation 淡入淡出动画  <alpha>A fade-in or fade-out animation. Represents an AlphaAnimation. a ...

  6. Android动画开发——Animation动画效果

    动画类型 Android的animation由四种类型组成 XML中 alpha 渐变透明度动画效果 scale 渐变尺寸伸缩动画效果 translate 画面转换位置移动动画效果 rotate 画面 ...

  7. android+动画悬浮窗口,悬浮窗能实现自定Animation动画效果吗?

    该楼层疑似违规已被系统折叠 隐藏此楼查看此楼 我的软件运行后会直接去调用Service来显示悬浮的Button 后来在学习Dialog时认识了Animation,显示.退出对话窗时都能自定动画 就在想 ...

  8. 在GridView的行绑定中应用Animation动画效果

    今天做一个功能需要实现绑定GridView的行Button点击就实现Animation的动画效果,终于被我解决了!主要代码如下: GridVIew行绑定: <ItemTemplate>   ...

  9. android 属性动画伸缩,Android动画开发——Animation动画效果详解

    在Android中,分别可以在xml中定义Animation,也可以在程序代码中定义. 动画类型Android的animation由四种类型组成 XML中alpha渐变透明度动画效果 scale渐变尺 ...

  10. ios animation 动画效果实现

    1.过渡动画 CATransition CATransition *animation = [CATransition animation];[animation setDuration:1.0];[ ...

最新文章

  1. C# 将DataTable数据源转换成实体类
  2. wxruby框架例子1
  3. mongodb数据合并设计_「时间序列数据」和MongoDB(二)-模式设计最佳实践
  4. Css中图片局部放大,将图片中局部放大效果
  5. Qt Creator指定编辑器设置
  6. 【蓝桥官网试题 - 算法提高】change(思维)
  7. 清华大学计算机音乐,清华特奖候选人丨胡昌然:关于机器,音乐和灵魂
  8. php毕业论文结论,科学网—如何写好学位论文的摘要和结论 - 王东升的博文
  9. python将密文解密为明文_三分钟教你学会如何将密文解码成明文
  10. 将一个链表分为奇偶两个链表
  11. Anbox之arm平台lxc调试(十一)
  12. 理解RTF和RTX指标
  13. 使用Vivado软件进行硬件调试
  14. 高等数学:第一章 函数与极限(2)数列极限
  15. mysql5.045_Microsoft SQL Server数据库各版本下载地址集合
  16. 9个可视化图表在线制作工具,总有一款适合你
  17. Mac下载Bilibili视频
  18. C++11 参数绑定-bind函数用法
  19. localStorage的图片缓存
  20. CAD学习笔记(一)

热门文章

  1. 华为AP3010DN-V2 Fit转Fat
  2. 知心王姐小饭桌 IM消息应用开发:一看看懂Protocol Buffer(协议篇)
  3. Tushare学习文档(八 银行间同业拆放利率)
  4. 默纳克MCB-C2电气图
  5. 七月在线笔记之推荐系统
  6. ppp服务器中断,ppp服务器断开连接
  7. 打开日志管理的潘多拉盒子
  8. 前端如何处理十万级别的大量数据
  9. 那些辉煌的背后, 不知装载了多少苦涩
  10. Android混淆、反编译基础教程