-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.xml
123 lines (96 loc) · 6.96 KB
/
index.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>NewHandler's Blog</title>
<link>http://www.newhandler.com/</link>
<description>Recent content on NewHandler's Blog</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Sun, 21 Apr 2019 23:52:11 +0800</lastBuildDate>
<atom:link href="http://www.newhandler.com/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Android系统演进</title>
<link>http://www.newhandler.com/post/android-system-evolution/</link>
<pubDate>Sun, 21 Apr 2019 23:52:11 +0800</pubDate>
<guid>http://www.newhandler.com/post/android-system-evolution/</guid>
<description>这周六(2019-4-20)我去参加了安卓巴士举办的开发者大会,会议上Gityuan分享了Android技术架构演进与未来。 文末我会附上这次</description>
</item>
<item>
<title>Android内存分析命令</title>
<link>http://www.newhandler.com/post/memory-analysis-command/</link>
<pubDate>Sun, 21 Apr 2019 23:43:28 +0800</pubDate>
<guid>http://www.newhandler.com/post/memory-analysis-command/</guid>
<description>本篇文章是对Gityuan的文章Android内存分析命令一次实践。 说明:可以先执行adb shell进入到手机系统,然后再执行内存分析命令,</description>
</item>
<item>
<title>StateListAnimator — a Powerful Little Tool for Elevation Animation</title>
<link>http://www.newhandler.com/post/little_tool_for_elevation_animation/</link>
<pubDate>Sun, 21 Apr 2019 23:39:34 +0800</pubDate>
<guid>http://www.newhandler.com/post/little_tool_for_elevation_animation/</guid>
<description>原文链接:https://proandroiddev.com/statelistanimator-a-powerful-little-too</description>
</item>
<item>
<title>Zig Zag Conversion</title>
<link>http://www.newhandler.com/post/zig-zag-conversion/</link>
<pubDate>Sun, 21 Apr 2019 23:34:05 +0800</pubDate>
<guid>http://www.newhandler.com/post/zig-zag-conversion/</guid>
<description>题目 LeetCode-6 The string &ldquo;PAYPALISHIRING&rdquo; is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for better legibility) 1 2 3 P A H N A P L S I I G Y I R And then read line by line: &ldquo;PAHNAPLSIIGYIR&rdquo; Write the code that will take a string and make this conversion</description>
</item>
<item>
<title>Activity启动模式</title>
<link>http://www.newhandler.com/post/understanding-activity-launchmode/</link>
<pubDate>Sun, 14 Apr 2019 23:34:44 +0800</pubDate>
<guid>http://www.newhandler.com/post/understanding-activity-launchmode/</guid>
<description>参考任玉刚的《Android开发艺术探索》 在默认情况下,当我们启动Activity的时候,系统会创建实例并把它放入任务栈。当我们按下back</description>
</item>
<item>
<title>Terminal常用配置以及使用</title>
<link>http://www.newhandler.com/post/common-config-in-terminal/</link>
<pubDate>Sun, 14 Apr 2019 23:31:46 +0800</pubDate>
<guid>http://www.newhandler.com/post/common-config-in-terminal/</guid>
<description>Terminal是我们开发过程常用的一个工具。高效利用Terminal能够提高工作效率。 下面是我在开发过程中的一些小技巧,可能很多你已经在使</description>
</item>
<item>
<title>The Journey of Launching Activity</title>
<link>http://www.newhandler.com/post/the-journey-of-launching-activity/</link>
<pubDate>Sun, 14 Apr 2019 23:26:47 +0800</pubDate>
<guid>http://www.newhandler.com/post/the-journey-of-launching-activity/</guid>
<description>原文链接 https://medium.com/@Myyousseff/the-journey-of-launching-an-android-activity-9b64e11dc157 Android开发中,启动Activity是最常见的操作,启动一个Activity过程到底发生了什么呢?让我们一探究竟。 Zygote 新建一个</description>
</item>
<item>
<title>Longest Palindromic Substring</title>
<link>http://www.newhandler.com/post/longest-palindromic-substring/</link>
<pubDate>Sun, 14 Apr 2019 23:21:00 +0800</pubDate>
<guid>http://www.newhandler.com/post/longest-palindromic-substring/</guid>
<description>题目 LeetCode-5 Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000. Example 1: 1 2 3 Input: &#34;babad&#34; Output: &#34;bab&#34; Note: &#34;aba&#34; is also a valid answer. Example 2: 1 2 Input: &#34;cbbd&#34; Output: &#34;bb&#34; 给一个字符串s,假设s的最大长度为1000</description>
</item>
<item>
<title>ADB命令使用</title>
<link>http://www.newhandler.com/post/adb-command-usage/</link>
<pubDate>Mon, 08 Apr 2019 21:46:42 +0800</pubDate>
<guid>http://www.newhandler.com/post/adb-command-usage/</guid>
<description>前言 在Android开发中,我们经常会用到adb命令,比如: 安装apk使用adb install 查看当前连接的设备使用推送文件使用adb devices 推送文件使用ad</description>
</item>
<item>
<title>Median of Two Sorted Arrays</title>
<link>http://www.newhandler.com/post/leetcode-4/</link>
<pubDate>Mon, 08 Apr 2019 21:32:41 +0800</pubDate>
<guid>http://www.newhandler.com/post/leetcode-4/</guid>
<description>题目 Median of Two Sorted Arrays There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)). You may assume nums1 and nums2 cannot be both empty. Example 1: 1 2 3 4 nums1 = [1, 3] nums2 = [2] The median is 2.0 Example 2: 1 2 3</description>
</item>
<item>
<title>Android Binder通信过程</title>
<link>http://www.newhandler.com/post/android_binder/</link>
<pubDate>Sat, 19 Jan 2019 18:27:26 +0800</pubDate>
<guid>http://www.newhandler.com/post/android_binder/</guid>
<description>Binder原理分析 参考资料 写给 Android 应用工程师的 Binder 原理剖析 Android 多进程、Binder 你必须知道的一切 1. 概念 线程:线程是CPU最小的调度单元,是有限</description>
</item>
<item>
<title>Android Handler源码分析</title>
<link>http://www.newhandler.com/post/understand-handler/</link>
<pubDate>Sat, 19 Jan 2019 16:43:58 +0800</pubDate>
<guid>http://www.newhandler.com/post/understand-handler/</guid>
<description>Handler源码分析 Handler在Android多线程场景中应用广泛。 Handler作用 Handler可以将工作线程中需要更新UI的操作</description>
</item>
</channel>
</rss>