Skip to content

Commit 1418280

Browse files
committed
Merge pull request #11 from troyliu0105/master
add logo and update about
2 parents b6b3c79 + b6d1407 commit 1418280

13 files changed

Lines changed: 28 additions & 30 deletions

File tree

README.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
[中文介绍](README.z.md)
44

5+
![logo](http://7xk54v.com1.z0.glb.clouddn.com/images/logo/icon.png)
6+
57
>**Building Blocks** with Zhihu Daily API as a source of data; OptionsMenu as extensions of the entry; Design Support Library as UI design leader.I know, it sounds cool!
68
79
### How to use
@@ -58,27 +60,21 @@ Think about it, it is not very exciting? So hurry **Star** and **Fork** it! Your
5860

5961
## Contributors
6062

61-
- [troyliu0105](https://github.com/troyliu0105)
62-
63-
64-
## Help
65-
66-
Because I have not learned how to use Sketch, so the icon of Building Blocks still default.
67-
68-
If you happen to find her, and just no place to play your talent, then, ask you for her design a beautiful icon it :)
63+
- [troyliu0105](https://github.com/troyliu0105)
64+
- logo: [Mao](http://weibo.com/cat93/) & troyliu0105
6965

7066
## Contact Me
7167

72-
Born in 1992, now a student of Southeast University, master of software engineerin. Loving technology, programming, reading and sports.
68+
Born in 1992, now a student of Southeast University, master of software engineerin. Loving technology, programming, reading and sports.
7369

7470
I will graduate in June 2017, expect the internship or full-time job in Android or iOS.
7571

76-
If you have any questions or want to make friends with me, please feel free to contact me : [imtangqi#gmail.com](mailto:imtangqi@gmail.com "Welcome to contact me")
72+
If you have any questions or want to make friends with me, please feel free to contact me : [imtangqi#gmail.com](mailto:imtangqi@gmail.com "Welcome to contact me")
7773

7874
## Project Home
7975

8076
[http://itangqi.me/2015/09/03/building-blocks/](http://itangqi.me/2015/09/03/building-blocks/)
8177

8278
## License
8379

84-
[GPLv3](/LICENSE)
80+
[GPLv3](/LICENSE)

README.z.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Building Blocks - 积木
22
=====================
33

4+
![logo](http://7xk54v.com1.z0.glb.clouddn.com/images/logo/icon.png)
5+
46
>**积木** - 一个以知乎日报作为数据展现内容;以抽屉菜单作为功能扩展入口;依循 Material Design 作为主导设计 UI 的应用;我知道,这听起来就很酷!
57
68
### How to use - 如何使用
@@ -58,15 +60,8 @@ Building Blocks - 积木
5860

5961
## Contributors
6062

61-
- [troyliu0105](https://github.com/troyliu0105)
62-
63-
## Help - 帮帮我
64-
65-
天生不是做设计的料,至今还没学会 Sketch,更别说 PS 了,所以,「积木」的「应用图标」至今还缺省着。
66-
67-
不愿将就的我,愿意等,如果你正好发现了她,又愿意赏脸施展下你的才华,那么不妨为她设计个漂亮的图标吧:)
68-
69-
你能在下面找到我的联系方式,在此我先替她谢过啦!!!
63+
- [troyliu0105](https://github.com/troyliu0105)
64+
- logo: [Mao](http://weibo.com/cat93/) & troyliu0105
7065

7166
## Contact - 联系我
7267

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<application
2020
android:name=".application.App"
2121
android:allowBackup="true"
22-
android:icon="@mipmap/ic_launcher"
22+
android:icon="@drawable/icon"
2323
android:label="@string/app_name"
2424
android:theme="@style/Base.Theme.AppTheme">
2525

app/src/main/java/me/itangqi/buildingblocks/ui/activity/AboutActivity.java

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import android.support.design.widget.CollapsingToolbarLayout;
66
import android.support.v7.app.AppCompatActivity;
77
import android.support.v7.widget.Toolbar;
8+
import android.text.method.LinkMovementMethod;
89
import android.view.Menu;
910
import android.view.MenuItem;
1011
import android.view.View;
@@ -26,9 +27,14 @@
2627

2728
public class AboutActivity extends AppCompatActivity implements SwipeBackActivityBase {
2829

29-
@Bind(R.id.toolbar) Toolbar mToolbar;
30-
@Bind(R.id.tv_version) TextView mVersionTextView;
31-
@Bind(R.id.collapsing_toolbar) CollapsingToolbarLayout mCollapsingToolbarLayout;
30+
@Bind(R.id.toolbar)
31+
Toolbar mToolbar;
32+
@Bind(R.id.tv_version)
33+
TextView mVersionTextView;
34+
@Bind(R.id.collapsing_toolbar)
35+
CollapsingToolbarLayout mCollapsingToolbarLayout;
36+
@Bind(R.id.about_thanks_to)
37+
TextView mThanksTo;
3238

3339
private SwipeBackActivityHelper mHelper;
3440

@@ -44,7 +50,7 @@ protected void onCreate(Bundle savedInstanceState) {
4450

4551
setSupportActionBar(mToolbar);
4652
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
47-
53+
mThanksTo.setMovementMethod(LinkMovementMethod.getInstance());
4854
mHelper = new SwipeBackActivityHelper(this);
4955
mHelper.onActivityCreate();
5056
}
9.91 KB
Loading
30.2 KB
Loading
44.1 KB
Loading

app/src/main/res/layout/activity_about.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
android:layout_width="96dp"
3232
android:layout_height="96dp"
3333
android:layout_marginTop="@dimen/margin_24dp"
34-
android:src="@mipmap/ic_launcher"/>
34+
android:src="@drawable/icon"/>
3535

3636
<TextView
3737
android:layout_width="wrap_content"
@@ -108,7 +108,7 @@
108108
android:layout_height="wrap_content"
109109
android:layout_marginBottom="12dp"
110110
android:layout_marginTop="12dp"
111-
android:text="@string/about_help_me"
111+
android:text="@string/about_thanks_to"
112112
android:textColor="@color/secondary_text"/>
113113

114114
<RelativeLayout
@@ -118,9 +118,10 @@
118118
android:padding="16dp">
119119

120120
<TextView
121+
android:id="@+id/about_thanks_to"
121122
android:layout_width="wrap_content"
122123
android:layout_height="wrap_content"
123-
android:text="@string/about_help_me_detail"
124+
android:text="@string/about_thanks_to_detail"
124125
android:textColor="@color/secondary_text"
125126
android:textSize="14sp"
126127
tools:ignore="HardcodedText"/>
-3.34 KB
Binary file not shown.
-2.15 KB
Binary file not shown.

0 commit comments

Comments
 (0)