Android-TimesSquare (Parent)

Android component for picking a date on a calendar.

License

License

Categories

Categories

Square Business Logic Libraries Financial
GroupId

GroupId

com.squareup
ArtifactId

ArtifactId

android-times-square-parent
Last Version

Last Version

1.6.3
Release Date

Release Date

Type

Type

pom
Description

Description

Android-TimesSquare (Parent)
Android component for picking a date on a calendar.
Project URL

Project URL

https://github.com/square/android-times-square
Source Code Management

Source Code Management

http://github.com/square/android-times-square

Download android-times-square-parent

How to add to project

<!-- https://jarcasting.com/artifacts/com.squareup/android-times-square-parent/ -->
<dependency>
    <groupId>com.squareup</groupId>
    <artifactId>android-times-square-parent</artifactId>
    <version>1.6.3</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/com.squareup/android-times-square-parent/
implementation 'com.squareup:android-times-square-parent:1.6.3'
// https://jarcasting.com/artifacts/com.squareup/android-times-square-parent/
implementation ("com.squareup:android-times-square-parent:1.6.3")
'com.squareup:android-times-square-parent:pom:1.6.3'
<dependency org="com.squareup" name="android-times-square-parent" rev="1.6.3">
  <artifact name="android-times-square-parent" type="pom" />
</dependency>
@Grapes(
@Grab(group='com.squareup', module='android-times-square-parent', version='1.6.3')
)
libraryDependencies += "com.squareup" % "android-times-square-parent" % "1.6.3"
[com.squareup/android-times-square-parent "1.6.3"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

  • library

TimesSquare for Android

Standalone Android widget for picking a single date from a calendar view.

Screenshot

Usage

Include CalendarPickerView in your layout XML.

<com.squareup.timessquare.CalendarPickerView
    android:id="@+id/calendar_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    />

This is a fairly large control so it is wise to give it ample space in your layout. On small devices it is recommended to use a dialog, full-screen fragment, or dedicated activity. On larger devices like tablets, displaying full-screen is not recommended. A fragment occupying part of the layout or a dialog is a better choice.

In the onCreate of your activity/dialog or the onCreateView of your fragment, initialize the view with a range of valid dates as well as the currently selected date.

Calendar nextYear = Calendar.getInstance();
nextYear.add(Calendar.YEAR, 1);

CalendarPickerView calendar = (CalendarPickerView) findViewById(R.id.calendar_view);
Date today = new Date();
calendar.init(today, nextYear.getTime())
    .withSelectedDate(today);

The default mode of the view is to have one selectable date. If you want the user to be able to select multiple dates or a date range, use the inMode() method:

calendar.init(today, nextYear.getTime())
    .inMode(RANGE);

Download

The latest version can be downloaded in zip and referenced by your application as a library project.

You can also depend on the library through Maven:

<dependency>
  <groupId>com.squareup</groupId>
  <artifactId>android-times-square</artifactId>
  <version>1.6.5</version>
  <type>apklib</type>
</dependency>

or Gradle:

compile 'com.squareup:android-times-square:1.6.5@aar'

Snapshots of the development version are available in Sonatype's snapshots repository.

License

Copyright 2012 Square, Inc.

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.
com.squareup

Square

Versions

Version
1.6.3
1.6.2
1.6.1
1.6.0
1.5.0
1.4.1
1.4.0
1.3.0
1.2.1
1.2.0
1.1.1
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0