发布时间:2016-02-26 20:03:05
Android中动画:Tween Animation:通过对场景里的对象不断做图像变换(平移、缩放、旋转)产生动画效果,即是一种渐变动画;Frame Animation:顺序播放事先做好的图像,是一种画面转换动画。把这两种动画中的的各种用法整理了一下,具体代码在附件中。如下图: .........【阅读全文】
发布时间:2015-11-03 21:56:09
MainActivity 主界面经典的一个下面的选择键来选对应的fragment,在oncreate代码进行分段,首先是获得对应的view(初始化),并对这些view进行修改的部分。1.(1)第一个Fragment是订阅,同时使用ListView,先从服务器来获取订阅信息,使用本地bean数据存放,数据然后给ListView设定Adapter,需要传入Activity和数据,在Ada.........【阅读全文】
发布时间:2015-10-04 12:46:10
//Given inorder and postorder traversal of a tree, construct the binary tree.<br />//<br />//Note:<br />//You may assume that duplicates do not exist in the tree.<br />public class ConstructBinaryTreefromInorderandPostorderTraversal {<br /><br /><br />public static void main(String[] args) {.........【阅读全文】
发布时间:2015-10-04 12:33:07
//Given preorder and inorder traversal of a tree, construct the binary tree.<br />public class ConstructBinaryTreefromPreorderandInorderTraversal {<br /><br /><br />public static void main(String[] args) {<br />// TODO Auto-generated method stub<br /><br /><br />}<br />public TreeNode build.........【阅读全文】
发布时间:2015-10-04 12:31:02
<br /><br />import java.util.ArrayList;<br />import java.util.List;<br />//Triangle My Submissions Question Solution <br />//Total Accepted: 51440 Total Submissions: 184601 Difficulty: Medium<br />//Given a triangle, find the minimum path sum from top to bottom. Each step you may move to .........【阅读全文】