Skip to content

Commit

Permalink
菜鸡太粗心大意了,修复添加任务清单界面点击返回键无响应bug
Browse files Browse the repository at this point in the history
  • Loading branch information
hegj committed Sep 6, 2019
1 parent 6a988a5 commit a16f66e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/release/output.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[{"outputType":{"type":"APK"},"apkData":{"type":"MAIN","splits":[],"versionCode":2,"versionName":"1.0.1","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]
[{"outputType":{"type":"APK"},"apkData":{"type":"MAIN","splits":[],"versionCode":3,"versionName":"1.0.3","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]
1 change: 0 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@
<activity
android:name="com.tencent.bugly.beta.ui.BetaActivity"
android:configChanges="keyboardHidden|orientation|screenSize|locale"
android:label="第三方Bugly的配置界面"
android:theme="@android:style/Theme.Translucent" /> <!-- Arms 配置 -->
<meta-data
android:name="design_width_in_dp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ class AddTodoActivity : BaseActivity<AddTodoPresenter>(), AddTodoContract.View {
todoResponse = getSerializableExtra("data") as TodoResponse?
}
toolbar.run {
setSupportActionBar(this)
title = "添加待办清单"
setNavigationIcon(R.drawable.ic_back)
setNavigationOnClickListener { finish() }
setSupportActionBar(this)
}
if (todoResponse == null) {
add_todo_colorview.setView(TodoType.TodoType1.color)
Expand Down
4 changes: 2 additions & 2 deletions config.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ ext {
buildToolsVersion: "28.0.3",
minSdkVersion : 16,
targetSdkVersion : 28,
versionCode : 2,
versionName : "1.0.1"
versionCode : 3,
versionName : "1.0.3"
]

version = [
Expand Down

0 comments on commit a16f66e

Please sign in to comment.