Skip to content

Commit fbf9ff4

Browse files
committed
see 06/29 log
1 parent a5a7420 commit fbf9ff4

File tree

8 files changed

+10
-6
lines changed

8 files changed

+10
-6
lines changed

README-CN.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# :fire: Android开发人员不得不收集的代码([持续更新中][update_log.md])
1+
![logo][logo]
22

33
[![auc][aucsvg]][auc] [![api][apisvg]][api] [![build][buildsvg]][build] [![Insight][insightsvg]][insight] [![License][licensesvg]][license]
44

@@ -684,6 +684,7 @@ Utils.init(context);
684684
```
685685

686686

687+
[logo]: https://raw.githubusercontent.com/Blankj/AndroidUtilCode/master/raw/logo.png
687688

688689
[aucsvg]: https://img.shields.io/badge/AndroidUtilCode-v1.7.1-brightgreen.svg
689690
[auc]: https://github.com/Blankj/AndroidUtilCode

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# :fire: Android developers should collect the following utils
1+
![logo][logo]
22

33
[![auc][aucsvg]][auc] [![api][apisvg]][api] [![build][buildsvg]][build] [![Insight][insightsvg]][insight] [![License][licensesvg]][license]
44

@@ -684,6 +684,7 @@ Utils.init(context);
684684
```
685685

686686

687+
[logo]: https://raw.githubusercontent.com/Blankj/AndroidUtilCode/master/raw/logo.png
687688

688689
[aucsvg]: https://img.shields.io/badge/AndroidUtilCode-v1.7.1-brightgreen.svg
689690
[auc]: https://github.com/Blankj/AndroidUtilCode

app/src/main/java/com/blankj/androidutilcode/activity/BarActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* author: Blankj
1414
* blog : http://blankj.com
1515
* time : 2017/05/27
16-
* desc :
16+
* desc : Bar工具类Demo
1717
* </pre>
1818
*/
1919
public class BarActivity extends BaseBackActivity {

app/src/main/java/com/blankj/androidutilcode/activity/BarBranchActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* author: Blankj
1919
* blog : http://blankj.com
2020
* time : 2017/05/27
21-
* desc :
21+
* desc : Bar工具类Demo分支
2222
* </pre>
2323
*/
2424
public class BarBranchActivity extends BaseBackActivity

app/src/main/java/com/blankj/androidutilcode/base/BaseActivity.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ protected void onCreate(Bundle savedInstanceState) {
3737
setBaseView();
3838
initView(savedInstanceState, contentView);
3939
doBusiness(this);
40+
4041
contentView.setBackgroundColor(Color.WHITE);
4142
}
4243

art/logo.png

27 KB
Loading

update_log.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
* 17/06/29 README新增logo
12
* 17/06/28 增加返回键及右划返回
23
* 17/06/27 增加Toolbar
34
* 17/06/26 增加final参数

utilcode/src/test/java/com/blankj/utilcode/util/TestUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ public static void init() {
3939
Utils.init(RuntimeEnvironment.application);
4040
}
4141

42-
// @Test
42+
// @Test
4343
public void readme2Eng() throws Exception {
4444
formatCN();
4545
File readmeCN = new File(new File(System.getProperty("user.dir")).getAbsolutePath() + FILE_SEP + "README-CN.md");
4646
File readmeEng = new File(new File(System.getProperty("user.dir")).getAbsolutePath() + FILE_SEP + "README.md");
4747
List<String> list = FileIOUtils.readFile2List(readmeCN, "UTF-8");
48-
StringBuilder sb = new StringBuilder("# :fire: Android developers should collect the following utils" + LINE_SEP + LINE_SEP +
48+
StringBuilder sb = new StringBuilder("![logo][logo]" + LINE_SEP + LINE_SEP +
4949
"[![auc][aucsvg]][auc] [![api][apisvg]][api] [![build][buildsvg]][build] [![Insight][insightsvg]][insight] [![License][licensesvg]][license]" + LINE_SEP + LINE_SEP +
5050
"## [README of Chinese][readme-cn.md]" + LINE_SEP + LINE_SEP +
5151
"## API" + LINE_SEP + LINE_SEP);

0 commit comments

Comments
 (0)