Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
amitjangid80 committed Nov 3, 2018
2 parents 9849c5e + dfcdd62 commit 86ec366
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ allprojects{
```
dependencies {
...
implementation 'com.github.amitjangid80:multiutillib:v1.3.2'
implementation 'com.github.amitjangid80:multiutillib:v1.3.4'
}
```

Expand All @@ -43,7 +43,7 @@ dependencies {
<dependency>
<groupId>com.github.amitjangid80</groupId>
<artifactId>multiutillib</artifactId>
<version>v1.3.2</version>
<version>v1.3.4</version>
<dependency>
```

Expand Down Expand Up @@ -268,6 +268,31 @@ dbHelper.executeSelectQuery(tableName, values, hasConditions, conditionalValues)
dbHelper.getRecordCount(tableName, values, hasConditions, conditionalValues);
```

### DatePickerFragment

>**Use this date picker fragment for selecting date.**
```java

DatePickerFragment datePickerFragment = new DatePickerFragment();

/**
* 2018 October 24 - Wednesday - 03:34 PM
* show date picker dialog method
*
* this method will show the date picker dialog fragment
*
* @param context - context of the application
* @param selectedDate - interface of date picker fragment for getting the selected date value
* @param selectedDateFormat - format in which you want the date.
* Example: yyyy-MM-dd hh:mm:ss
*
* @param isCurrentDateMin - pass true to set current date as minimum date else pass false.
**/
datePickerFragment.showDatePickerDialog(this, this, "yyyy/MM/dd HH:mm:ss", false);

```

### SquareImageView

>**Use it the way you use ImageView in android. This makes your image in a perfect square shape.**
Expand Down

0 comments on commit 86ec366

Please sign in to comment.