Skip to content

dewinjm/TextClock

Repository files navigation

TextClock

Android Library

Android custom digital clock.

How to include

Add the repository to your project build.gradle:

repositories {
	jcenter()
	maven {
		url "https://jitpack.io"
	}
}

And add the library to your module build.gradle:

dependencies {
	 compile 'com.github.dewinjm:TextClock:1.0'
}

Usage

Simply add the view to your design. You have color attribute, to set the color you want. like this:

<com.github.dewinjm.textclock.TextClock
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      app:color="@color/textColor"/>

License

Copyright 2017 Dewin J. Martínez
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.