Skip to content

Commit 1f18fac

Browse files
committed
Update: Update version to v0.5.1 #78
1 parent e012628 commit 1f18fac

File tree

10 files changed

+30
-27
lines changed

10 files changed

+30
-27
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ Think about it, it is not very exciting? So hurry **Star** and **Fork** it! Your
1414

1515
## Update Log
1616

17-
### v0.5.0
17+
### v0.5.1
1818

19-
- Abandon - CardView, simple regression and to increase RecycerView the dividing line item
20-
- Abandon - Third party DrawerLayout, flashy
21-
- Abandon - WebView display the article title, instead of sharing buttons
22-
- New - Search function, jump page displays the results
23-
- New - Right slide gestures, return to the previous page function
19+
- Abandon - CardView, return to simple, more in line with the design specifications
20+
- Abandon - third party DrawerLayout, flashy guy
21+
- Abandon - WebView article title bar at the top, instead of sharing buttons
22+
- New - Search function, display the search results page jump
23+
- New - Right slide gestures, return to the previous page function (Bug v0.5.0 appearing been fixed)
2424
- Optimization - Extended capabilities as a drawer sub-menu options
2525
- Reconstruction - As far as possible, the code is written and structured elegance
2626

2727
## Demo
2828

29-
[Download](https://github.com/tangqi92/BuildingBlocks/releases/download/v0.5.0/buildingblocks_v0.5.0.apk)
29+
[Download](https://github.com/tangqi92/BuildingBlocks/releases/download/v0.5.1/buildingblocks_v0.5.1.apk)
3030

3131
## Screenshots
3232
<img src="/screenshots/s1.png" alt="screenshot" title="screenshot" width="270" height="486" /> <img src="/screenshots/s2.png" alt="screenshot" title="screenshot" width="270" height="486" />

README.z.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ Building Blocks - 积木
1313

1414
## Update Log - 更新日志
1515

16-
### v0.5.0
16+
### v0.5.1
1717

18-
- 抛弃 - CardView,回归朴实并为 RecycerView 中 item 增加分割线
19-
- 抛弃 - 第三方 DrawerLayout,华而不实
20-
- 抛弃 - WebView 中显示文章标题,取而代之为分享按钮
21-
- 新增 - 搜索功能,跳转页面显示结果
22-
- 新增 - 手势右滑,返回上级页面功能
18+
- 抛弃 - CardView,回归朴实,更符合设计规范
19+
- 抛弃 - 第三方 DrawerLayout,那家伙华而不实
20+
- 抛弃 - WebView 顶部栏中文章标题,取而代之为分享按钮
21+
- 新增 - 搜索功能,在跳转页面显示搜索结果
22+
- 新增 - 手势右滑,返回上级页面功能(v0.5.0 中出现的 Bug 已经修复)
2323
- 优化 - 将功能扩展作为抽屉菜单的子选项
2424
- 重构 - 尽可能将代码写得优雅和规整
2525

2626
## Demo - 示例
2727

28-
[快速下载](https://github.com/tangqi92/BuildingBlocks/releases/download/v0.5.0/buildingblocks_v0.5.0.apk)
28+
[快速下载](https://github.com/tangqi92/BuildingBlocks/releases/download/v0.5.1/buildingblocks_v0.5.1.apk)
2929

3030
## Screenshots - 预览
3131
<img src="/screenshots/s1.png" alt="screenshot" title="screenshot" width="270" height="486" /> <img src="/screenshots/s2.png" alt="screenshot" title="screenshot" width="270" height="486" />

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ android {
88
applicationId "me.itangqi.buildingblocks"
99
minSdkVersion 16
1010
targetSdkVersion 22
11-
versionCode 56
12-
versionName "0.5.0"
11+
versionCode 57
12+
versionName "0.5.1"
1313
}
1414
buildTypes {
1515
release {

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
android:allowBackup="true"
2222
android:icon="@mipmap/ic_launcher"
2323
android:label="@string/app_name"
24-
android:theme="@style/Theme.AppTheme">
24+
android:theme="@style/Base.Theme.AppTheme">
2525

2626
<meta-data
2727
android:name="com.google.android.gms.version"

app/src/main/res/drawable/line_divider.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<size
66
android:width="1dp"
7-
android:height="1dp" />
7+
android:height="0.1dp" />
88

99
<solid android:color="@color/divider" />
1010

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
android:layout_height="wrap_content"
88
android:background="@color/bg_white"
99
android:orientation="horizontal"
10-
android:padding="@dimen/margin_16dp"
11-
android:layout_marginBottom="@dimen/margin_8dp">
10+
android:padding="@dimen/margin_16dp">
1211

1312
<ImageView
1413
android:id="@+id/iv_cover"

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
android:layout_height="wrap_content"
88
android:background="@color/bg_white"
99
android:orientation="vertical"
10-
android:padding="@dimen/margin_16dp"
11-
android:layout_marginBottom="@dimen/margin_8dp">
10+
android:padding="@dimen/margin_16dp">
1211

1312
<TextView
1413
android:id="@+id/tv_title"

app/src/main/res/values-v21/styles.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<resources>
33

4-
<style name="AppTheme" parent="Base.Theme.AppTheme">
4+
<style name="AppTheme" parent="Theme.AppTheme">
55
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
66
<item name="android:statusBarColor">@android:color/transparent</item>
77
</style>

app/src/main/res/values/styles.xml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
11
<resources xmlns:tools="http://schemas.android.com/tools">
22

3-
<style name="Theme.AppTheme" parent="Base.Theme.AppTheme">
3+
<style name="Root.Theme.AppTheme" parent="Base.Theme.AppTheme">
4+
<!-- 解决activity切换时的黑屏问题 -->
5+
<item name="android:windowIsTranslucent">false</item>
46
</style>
57

6-
<style name="Base.Theme.AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
8+
<style name="Base.Theme.AppTheme" parent="Theme.AppTheme">
9+
<!-- 解决activity切换时的黑屏问题 -->
10+
<item name="android:windowIsTranslucent">true</item>
11+
</style>
12+
13+
<style name="Theme.AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
714
<!-- Material Theme -->
815
<item name="colorPrimary">@color/primary</item>
916
<item name="colorPrimaryDark">@color/primary_dark</item>
1017
<item name="colorAccent">@color/accent</item>
11-
<!-- 解决activity切换时的黑屏问题 -->
12-
<item name="android:windowIsTranslucent">true</item>
1318
</style>
1419

1520
<style name="CollapsingToolbarTitleStyle"

screenshots/s1.png

-35.1 KB
Loading

0 commit comments

Comments
 (0)