Android Open Source - Android-RobotoTextView Roboto Digital Clock






From Project

Back to project page Android-RobotoTextView.

License

The source code is released under:

Apache License

If you think the Android project Android-RobotoTextView listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright 2014 Evgeny Shishkin/*w ww  . j  ava 2  s .co  m*/
 *
 * 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.
 */

package com.devspark.robototextview.widget;

import android.content.Context;
import android.util.AttributeSet;
import android.widget.DigitalClock;

import com.devspark.robototextview.util.RobotoTextViewUtils;

/**
 * Implementation of a {@link DigitalClock} with native support for all the Roboto fonts.
 *
 * @author Evgeny Shishkin
 */
public class RobotoDigitalClock extends DigitalClock {

    /**
     * Simple constructor to use when creating a widget from code.
     *
     * @param context The Context the widget is running in, through which it can
     *                access the current theme, resources, etc.
     */
    public RobotoDigitalClock(Context context) {
        this(context, null);
    }

    /**
     * Constructor that is called when inflating a widget from XML. This is called
     * when a widget is being constructed from an XML file, supplying attributes
     * that were specified in the XML file. This version uses a default style of
     * 0, so the only attribute values applied are those in the Context's Theme
     * and the given AttributeSet.
     * <p/>
     * <p/>
     * The method onFinishInflate() will be called after all children have been
     * added.
     *
     * @param context The Context the widget is running in, through which it can
     *                access the current theme, resources, etc.
     * @param attrs   The attributes of the XML tag that is inflating the widget.
     */
    public RobotoDigitalClock(Context context, AttributeSet attrs) {
        super(context, attrs);

        if (!isInEditMode()) {
            RobotoTextViewUtils.initTypeface(this, context, attrs);
        }
    }

}




Java Source Code List

com.devspark.robototextview.sample.MainActivity.java
com.devspark.robototextview.style.RobotoTypefaceSpan.java
com.devspark.robototextview.util.RobotoTextViewUtils.java
com.devspark.robototextview.util.RobotoTypefaceManager.java
com.devspark.robototextview.widget.RobotoAutoCompleteTextView.java
com.devspark.robototextview.widget.RobotoButton.java
com.devspark.robototextview.widget.RobotoCheckBox.java
com.devspark.robototextview.widget.RobotoCheckedTextView.java
com.devspark.robototextview.widget.RobotoChronometer.java
com.devspark.robototextview.widget.RobotoCompoundButton.java
com.devspark.robototextview.widget.RobotoDigitalClock.java
com.devspark.robototextview.widget.RobotoEditText.java
com.devspark.robototextview.widget.RobotoExtractEditText.java
com.devspark.robototextview.widget.RobotoMultiAutoCompleteTextView.java
com.devspark.robototextview.widget.RobotoRadioButton.java
com.devspark.robototextview.widget.RobotoSwitch.java
com.devspark.robototextview.widget.RobotoTextClock.java
com.devspark.robototextview.widget.RobotoTextView.java
com.devspark.robototextview.widget.RobotoToggleButton.java