瀏覽代碼

Updated and implemented a bunch of images

Aidan Follestad 6 年之前
父節點
當前提交
cdb8f656d1
共有 27 個文件被更改,包括 18 次插入2 次删除
  1. 10 0
      README.md
  2. 二進制
      art/basic.png
  3. 二進制
      art/basic_list.png
  4. 二進制
      art/basic_with_buttons.png
  5. 二進制
      art/checkbox_prompt.png
  6. 二進制
      art/color_chooser.png
  7. 二進制
      art/color_chooser_sub.png
  8. 二進制
      art/cornerradius.png
  9. 二進制
      art/custom_argb.png
  10. 二進制
      art/custom_view.png
  11. 二進制
      art/customtheme.png
  12. 二進制
      art/datepicker.png
  13. 二進制
      art/datetimepicker.png
  14. 二進制
      art/file_chooser.png
  15. 二進制
      art/file_emptytext.png
  16. 二進制
      art/file_folder_creation.png
  17. 二進制
      art/icon.png
  18. 二進制
      art/input.png
  19. 二進制
      art/input_max_length.png
  20. 二進制
      art/lightanddarkthemes.jpg
  21. 二進制
      art/lightanddarkthemes.png
  22. 二進制
      art/multi_choice_list.png
  23. 二進制
      art/single_choice_list.png
  24. 二進制
      art/stacked_buttons.png
  25. 二進制
      art/timepicker.png
  26. 2 2
      documentation/CORE.md
  27. 6 0
      documentation/DATETIME.md

+ 10 - 0
README.md

@@ -24,6 +24,8 @@ are extensions to core.
 The `core` module contains everything you need to get started with the library. It contains all
 core and normal-use functionality.
 
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/basic_with_buttons.png" width="200px" />
+
 ```gradle
 dependencies {
   ...
@@ -39,6 +41,8 @@ dependencies {
  
 The `input` module contains extensions to the core module, such as a text input dialog.
 
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/input.png" width="200px" />
+
 ```gradle
 dependencies {
   ...
@@ -54,6 +58,8 @@ dependencies {
 
 The `files` module contains extensions to the core module, such as a file and folder chooser.
 
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/file_chooser.png" width="200px" />
+
 ```gradle
 dependencies {
   ...
@@ -69,6 +75,8 @@ dependencies {
 
 The `color` module contains extensions to the core module, such as a color chooser.
 
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/color_chooser.png" width="200px" />
+
 ```gradle
 dependencies {
   ...
@@ -84,6 +92,8 @@ dependencies {
 
 The `datetime` module contains extensions to make date, time, and date-time picker dialogs.
 
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/datetimepicker.png" width="400px" />
+
 ```gradle
 dependencies {
   ...

二進制
art/basic.png


二進制
art/basic_list.png


二進制
art/basic_with_buttons.png


二進制
art/checkbox_prompt.png


二進制
art/color_chooser.png


二進制
art/color_chooser_sub.png


二進制
art/cornerradius.png


二進制
art/custom_argb.png


二進制
art/custom_view.png


二進制
art/customtheme.png


二進制
art/datepicker.png


二進制
art/datetimepicker.png


二進制
art/file_chooser.png


二進制
art/file_emptytext.png


二進制
art/file_folder_creation.png


二進制
art/icon.png


二進制
art/input.png


二進制
art/input_max_length.png


二進制
art/lightanddarkthemes.jpg


二進制
art/lightanddarkthemes.png


二進制
art/multi_choice_list.png


二進制
art/single_choice_list.png


二進制
art/stacked_buttons.png


二進制
art/timepicker.png


+ 2 - 2
documentation/CORE.md

@@ -521,7 +521,7 @@ change fonts, corner rounding, etc.
 Light and dark theming is automatic based on your app's theme (basically whether `android:textColorPrimary` 
 is more light or more dark):
 
-<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/lightanddarkthemes.jpg" width="400px" />
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/lightanddarkthemes.png" width="400px" />
 
 ### Background Color
 
@@ -539,7 +539,7 @@ theme for the ripple color of list items, buttons, etc. by default. You can over
 
 Corner radius is the rounding of dialog corners:
 
-<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/cornerradius.png" width="200px" />
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/customtheme.png" width="200px" />
 
 it can be changed with an attribute in your app theme. It defaults to 2dp:
 

+ 6 - 0
documentation/DATETIME.md

@@ -22,6 +22,8 @@ dependencies {
 
 ## Date
 
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/datepicker.png" width="200px" />
+
 ```kotlin
 MaterialDialog(this).show {
   ...
@@ -35,6 +37,8 @@ You can optionally provide `minDate` and `currentDate` parameters as well.
 
 ## Time
 
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/timepicker.png" width="200px" />
+
 ```kotlin
 MaterialDialog(this).show {
   ...
@@ -48,6 +52,8 @@ You can optionally provide `currentTime` and `show24HoursView` parameters as wel
 
 ## DateTime
 
+<img src="https://raw.githubusercontent.com/afollestad/material-dialogs/master/art/datetimepicker.png" width="400px" />
+
 ```kotlin
 MaterialDialog(this).show {
   ...