Skip to content

Commit

Permalink
add dailu
Browse files Browse the repository at this point in the history
  • Loading branch information
maoruibin committed Jul 27, 2024
1 parent e0989a5 commit 6e50e7a
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 9 deletions.
13 changes: 13 additions & 0 deletions _posts/1990-03-31-2024-log.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
layout: mypost
title: "日志-2024"
description: 体系
hidden: true
categories: log
tags: log free
---

## 07/27
已经很久不在这里写日志了,时间真快,这一年经历的太多,上半年都做了哪些
- App 完善,支持了 Markdown,开发了网页版

9 changes: 5 additions & 4 deletions _posts/2015-05-19-way.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: mypost
author: 咕咚
title: "我的开发之路"
description: "利用Github搭建博客后,我写的第一篇博客"
description: "利用 Github 搭建博客后,我写的第一篇博客"
catalog: true
tags: 随想
categories: blog
Expand Down Expand Up @@ -44,8 +44,9 @@ categories: blog

14年3月网站总算能见人了,这时的网站首页,已经被我改的面目全非(褒义),因为我比较喜欢小米(我是一个代码层面的米粉),后来整个主页被我改的颇有几分小米官网的感觉,现在想想也是醉了。

我改版后的商城主页地址 &nbsp;&nbsp; <a href="http://www.ubive.com" target="_blank">http://www.ubive.com</a>
我改版后的商城主页地址: http://www.ubive.com
> 已经访问不了
一个农产品电商主页,其实不该走简洁路线,这是一个产品定位问题,但当时确实任性了,完全按照个人主观喜好去做,目前网页现在还是这个风格。<a href="http://www.ubive.com/" target="blank">优倍商城</a> 不知道网站现在运营如何,但是老板确实挺牛,没有融资,坚持了三年,也是蛮拼的,祝福老板。
一个农产品电商主页,其实不该走简洁路线,这是一个产品定位问题,但当时确实任性了,完全按照个人主观喜好去做,网站现在早已经废弃了,但是老板确实挺牛,没有融资,坚持了三年,也是蛮拼的,祝福老板。

网站上线的几个月后,继续负责网站优化,但是隐隐觉得我还是爱Android多一点,后来14年六月份辞职,继续开始自己的Android开发之路
网站上线的几个月后,继续负责网站优化,但是隐隐觉得我还是爱Android多一点,后来14年六月份辞职,继续开始自己的 Android 开发之路
4 changes: 2 additions & 2 deletions _posts/2015-05-21-custom_view_cakeview.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ categories: tech
![CakeView原理图](/assets/cakeview_principle_v2.png "CakeView原理图")

上面已经很清楚的看到了具体的实现过程。核心操作均在onDraw方法,如下

```java
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
Expand Down Expand Up @@ -54,7 +54,7 @@ categories: tech
canvas.drawTextOnPath(mContent, contentPath, 0, 0, mContentPaint);
}
}

```

关于画扇形,这里推荐一篇国外的博客,写的很好,对carvas的drawArc方法解释的很详细。

Expand Down
6 changes: 3 additions & 3 deletions _posts/2015-05-26-lock_screen.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ categories: tech
### 准备阶段

新建一个空的Android项目,并在主界面上拖放一个按钮。并在Button的布局文件中声明onClick事件。如下

```xml
<Button android:text="锁屏"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="lockScreen"/>

android:onClick="lockScreen"/>
```
在MainActivity.java文件中实现lockScreen方法。

### 实现步骤
Expand Down

0 comments on commit 6e50e7a

Please sign in to comment.