Android Open Source - Android-RobotoTextView Roboto Auto Complete Text View






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/*from w  w  w  .j a  v a2 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.AutoCompleteTextView;

import com.devspark.robototextview.util.RobotoTextViewUtils;

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

    /**
     * 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 RobotoAutoCompleteTextView(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.
     * @see #RobotoAutoCompleteTextView(Context, android.util.AttributeSet, int)
     */
    public RobotoAutoCompleteTextView(Context context, AttributeSet attrs) {
        super(context, attrs);

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

    /**
     * Perform inflation from XML and apply a class-specific base style. This
     * constructor of View allows subclasses to use their own base style when
     * they are inflating.
     *
     * @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.
     * @param defStyle The default style to apply to this widget. If 0, no style
     *                 will be applied (beyond what is included in the theme). This may
     *                 either be an attribute resource, whose value will be retrieved
     *                 from the current theme, or an explicit style resource.
     * @see #RobotoAutoCompleteTextView(Context, AttributeSet)
     */
    public RobotoAutoCompleteTextView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);

        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