Skip to content

Commit

Permalink
SEE README FOR CHANGELOGS
Browse files Browse the repository at this point in the history
  • Loading branch information
TutorialsAndroid committed Jul 28, 2022
1 parent 683c0fa commit 6404fd0
Show file tree
Hide file tree
Showing 60 changed files with 4,422 additions and 4,407 deletions.
Binary file modified .gradle/7.3.3/executionHistory/executionHistory.bin
Binary file not shown.
Binary file modified .gradle/7.3.3/executionHistory/executionHistory.lock
Binary file not shown.
Binary file modified .gradle/7.3.3/fileHashes/fileHashes.bin
Binary file not shown.
Binary file modified .gradle/7.3.3/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified .gradle/7.3.3/fileHashes/resourceHashesCache.bin
Binary file not shown.
Binary file modified .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
Binary file modified .gradle/file-system.probe
Binary file not shown.
14 changes: 3 additions & 11 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
![](https://github.com/TutorialsAndroid/KAlertDialog/blob/master/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png)

# New version released v17.0.19 on 28-07-22
# New version released v18.0.19 on 28-07-22
## Changelogs
- Fixed issue in button color not changing
- Using Scalable DP library
- Added changing of font style
- Added changing of title and content color
### Read the changes in README

Alert Dialog ![API](https://img.shields.io/badge/API-19%2B-brightgreen.svg?style=flat) [![Known Vulnerabilities](https://snyk.io/test/github/TutorialsAndroid/KAlertDialog/badge.svg?targetFile=library%2Fbuild.gradle)](https://snyk.io/test/github/TutorialsAndroid/KAlertDialog?targetFile=library%2Fbuild.gradle) [![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-KAlertDiaog-blue.svg?style=flat)](https://android-arsenal.com/details/1/7588) [![License](https://img.shields.io/badge/License-Apache%202.0-green.svg)](https://opensource.org/licenses/Apache-2.0)
Expand Down Expand Up @@ -54,7 +55,7 @@ Add it in your root build.gradle at the end of repositories:
Step 2. Add the dependency

dependencies {
implementation 'com.github.TutorialsAndroid:KAlertDialog:v17.0.19'
implementation 'com.github.TutorialsAndroid:KAlertDialog:v18.0.19'
}

## Usage
Expand Down Expand Up @@ -144,7 +145,7 @@ To Hide Cancel And Confirm Button:

To Change the font of title and content:

new KAlertDialog(this, KAlertDialog.CUSTOM_IMAGE_TYPE, R.font.yourFontName)
new KAlertDialog(this, alertType, R.font.yourFontName)

To Change the font of only title:

Expand All @@ -154,6 +155,11 @@ To Change the font of only content:

.dialogContentFont(R.font.yourFontName)

To Change the color of title and content

.setTitleColor(R.color.yourColorName)
.setContentColor(R.color.yourColorName)

Bind the listener to confirm button:

new KAlertDialog(this, KAlertDialog.WARNING_TYPE, 0)
Expand Down
Binary file not shown.
Binary file not shown.
Binary file modified library/build/intermediates/compile_r_class_jar/debug/R.jar
Binary file not shown.
2 changes: 2 additions & 0 deletions library/build/intermediates/compile_symbol_list/debug/R.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1760,6 +1760,7 @@ int color mtrl_textinput_focused_box_stroke_color 0x0
int color mtrl_textinput_hovered_box_stroke_color 0x0
int color notification_action_color_filter 0x0
int color notification_icon_bg_color 0x0
int color orange 0x0
int color primary_dark_material_dark 0x0
int color primary_dark_material_light 0x0
int color primary_material_dark 0x0
Expand All @@ -1768,6 +1769,7 @@ int color primary_text_default_material_dark 0x0
int color primary_text_default_material_light 0x0
int color primary_text_disabled_material_dark 0x0
int color primary_text_disabled_material_light 0x0
int color red 0x0
int color red_btn_bg_color 0x0
int color red_btn_bg_pressed_color 0x0
int color ripple_material_dark 0x0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Thu Jul 28 17:39:03 IST 2022
#Thu Jul 28 22:47:59 IST 2022
com.developer.kalert.library-pngs-0\:/drawable-xxhdpi/ic_success_tick.png=D\:\\Projects\\AndroidLibraries\\KAlertDialog-master\\library\\build\\intermediates\\packaged_res\\debug\\drawable-xxhdpi-v4\\ic_success_tick.png
com.developer.kalert.library-main-7\:/layout/alert_dialog.xml=D\:\\Projects\\AndroidLibraries\\KAlertDialog-master\\library\\build\\intermediates\\packaged_res\\debug\\layout\\alert_dialog.xml
com.developer.kalert.library-main-7\:/drawable/success_circle.xml=D\:\\Projects\\AndroidLibraries\\KAlertDialog-master\\library\\build\\intermediates\\packaged_res\\debug\\drawable\\success_circle.xml
Expand Down
Loading

0 comments on commit 6404fd0

Please sign in to comment.