diff --git a/README.md b/README.md index c864070..e6f906f 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ [中文介绍](README.z.md) +![logo](http://7xk54v.com1.z0.glb.clouddn.com/images/logo/icon.png) + >**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! ### How to use @@ -58,22 +60,16 @@ Think about it, it is not very exciting? So hurry **Star** and **Fork** it! Your ## Contributors -- [troyliu0105](https://github.com/troyliu0105) - - -## Help - -Because I have not learned how to use Sketch, so the icon of Building Blocks still default. - -If you happen to find her, and just no place to play your talent, then, ask you for her design a beautiful icon it :) +- [troyliu0105](https://github.com/troyliu0105) +- logo: [Mao](http://weibo.com/cat93/) & troyliu0105 ## Contact Me -Born in 1992, now a student of Southeast University, master of software engineerin. Loving technology, programming, reading and sports. +Born in 1992, now a student of Southeast University, master of software engineerin. Loving technology, programming, reading and sports. I will graduate in June 2017, expect the internship or full-time job in Android or iOS. -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") +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") ## Project Home @@ -81,4 +77,4 @@ If you have any questions or want to make friends with me, please feel free to c ## License -[GPLv3](/LICENSE) \ No newline at end of file +[GPLv3](/LICENSE) diff --git a/README.z.md b/README.z.md index ab720ca..e6a3f0f 100644 --- a/README.z.md +++ b/README.z.md @@ -1,6 +1,8 @@ Building Blocks - 积木 ===================== +![logo](http://7xk54v.com1.z0.glb.clouddn.com/images/logo/icon.png) + >**积木** - 一个以知乎日报作为数据展现内容;以抽屉菜单作为功能扩展入口;依循 Material Design 作为主导设计 UI 的应用;我知道,这听起来就很酷! ### How to use - 如何使用 @@ -58,15 +60,8 @@ Building Blocks - 积木 ## Contributors -- [troyliu0105](https://github.com/troyliu0105) - -## Help - 帮帮我 - -天生不是做设计的料,至今还没学会 Sketch,更别说 PS 了,所以,「积木」的「应用图标」至今还缺省着。 - -不愿将就的我,愿意等,如果你正好发现了她,又愿意赏脸施展下你的才华,那么不妨为她设计个漂亮的图标吧:) - -你能在下面找到我的联系方式,在此我先替她谢过啦!!! +- [troyliu0105](https://github.com/troyliu0105) +- logo: [Mao](http://weibo.com/cat93/) & troyliu0105 ## Contact - 联系我 diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 45e2c7e..c78a138 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -19,7 +19,7 @@ diff --git a/app/src/main/java/me/itangqi/buildingblocks/ui/activity/AboutActivity.java b/app/src/main/java/me/itangqi/buildingblocks/ui/activity/AboutActivity.java index 8c571ec..6fa1661 100644 --- a/app/src/main/java/me/itangqi/buildingblocks/ui/activity/AboutActivity.java +++ b/app/src/main/java/me/itangqi/buildingblocks/ui/activity/AboutActivity.java @@ -5,6 +5,7 @@ import android.support.design.widget.CollapsingToolbarLayout; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.Toolbar; +import android.text.method.LinkMovementMethod; import android.view.Menu; import android.view.MenuItem; import android.view.View; @@ -26,9 +27,14 @@ public class AboutActivity extends AppCompatActivity implements SwipeBackActivityBase { - @Bind(R.id.toolbar) Toolbar mToolbar; - @Bind(R.id.tv_version) TextView mVersionTextView; - @Bind(R.id.collapsing_toolbar) CollapsingToolbarLayout mCollapsingToolbarLayout; + @Bind(R.id.toolbar) + Toolbar mToolbar; + @Bind(R.id.tv_version) + TextView mVersionTextView; + @Bind(R.id.collapsing_toolbar) + CollapsingToolbarLayout mCollapsingToolbarLayout; + @Bind(R.id.about_thanks_to) + TextView mThanksTo; private SwipeBackActivityHelper mHelper; @@ -44,7 +50,7 @@ protected void onCreate(Bundle savedInstanceState) { setSupportActionBar(mToolbar); getSupportActionBar().setDisplayHomeAsUpEnabled(true); - + mThanksTo.setMovementMethod(LinkMovementMethod.getInstance()); mHelper = new SwipeBackActivityHelper(this); mHelper.onActivityCreate(); } diff --git a/app/src/main/res/drawable-xhdpi/icon.png b/app/src/main/res/drawable-xhdpi/icon.png new file mode 100644 index 0000000..f6c371c Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/icon.png differ diff --git a/app/src/main/res/drawable-xxhdpi/icon.png b/app/src/main/res/drawable-xxhdpi/icon.png new file mode 100644 index 0000000..dc85275 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/icon.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/icon.png b/app/src/main/res/drawable-xxxhdpi/icon.png new file mode 100644 index 0000000..96601fc Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/icon.png differ diff --git a/app/src/main/res/layout/activity_about.xml b/app/src/main/res/layout/activity_about.xml index 8ec880a..5a8cf38 100644 --- a/app/src/main/res/layout/activity_about.xml +++ b/app/src/main/res/layout/activity_about.xml @@ -31,7 +31,7 @@ android:layout_width="96dp" android:layout_height="96dp" android:layout_marginTop="@dimen/margin_24dp" - android:src="@mipmap/ic_launcher"/> + android:src="@drawable/icon"/> diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.png b/app/src/main/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index cde69bc..0000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.png b/app/src/main/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index c133a0c..0000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/app/src/main/res/mipmap-xhdpi/ic_launcher.png deleted file mode 100644 index bfa42f0..0000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index 324e72c..0000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 1254f97..7b1049f 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -25,8 +25,8 @@ 关于我 一个 Android 菜鸟 感谢开源 - 帮帮我 - 天生不是做设计的料,至今还没学会 Sketch,更别说 PS 了,所以,「积木」的「应用图标」至今还缺省着。\n\n不愿将就的我,愿意等,如果你正好发现了她,又正好没处发挥你的才华的话,那么不妨为她设计个漂亮的图标吧:)\n\n你能在下面找到我的联系方式,在此我先替她谢过啦!!! + 特别鸣谢 + 感谢Mao设计的图标 介绍与帮助 com.orhanobut:logger:1.10\ncom.jakewharton:butterknife:7.0.1\ncom.soundcloud.android:android-crop:1.0.0@aar\ncom.loopj.android:android-async-http:1.4.8\ncom.github.bumptech.glide:glide:3.6.1\nme.imid.swipebacklayout.lib:library:1.0.0