Skip to content

Commit

Permalink
update README
Browse files Browse the repository at this point in the history
  • Loading branch information
JiangHaiYang01 committed Jun 3, 2020
1 parent 64ba7f8 commit fd15052
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 3 deletions.
37 changes: 36 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,39 @@ SheetDialog(this)
})
.setCancelTvMsg("取消")
.show()
```
```

## 设计思路

- BaseDialog

基础的dialog 控制dialog 大小,显示隐藏等基本功能

- BottomDialog

继承BaseDialog,实现重底部弹出的效果

- SheetDialog

继承BottomDialog


# More

可以扫描二维码下载体验Demo

![](https://allens-blog.oss-cn-beijing.aliyuncs.com/uPic/2020-05-20-16-10-49-1589962249%20.png)

# License

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
15 changes: 13 additions & 2 deletions lib_dialog/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,16 @@ apply plugin: 'kotlin-android-extensions'
//apply from: 'maven.gradle'
//编译配置
apply from: '../config_compile.gradle'
//是否混淆
//apply from: '../proguard.gradle'

android{
//==========================================================================================
// lib 模块是否开启自定义的混淆
//==========================================================================================
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}

}

0 comments on commit fd15052

Please sign in to comment.