Search in sources :

Example 11 with AutoCompleteTextView

use of android.widget.AutoCompleteTextView in project platform_frameworks_base by android.

the class AutoCompleteTextViewActivityPortrait method onCreate.

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.auto_complete_list);
    ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_dropdown_item_1line, COUNTRIES);
    AutoCompleteTextView textView = (AutoCompleteTextView) findViewById(R.id.edit);
    textView.setAdapter(adapter);
}
Also used : ArrayAdapter(android.widget.ArrayAdapter) AutoCompleteTextView(android.widget.AutoCompleteTextView)

Example 12 with AutoCompleteTextView

use of android.widget.AutoCompleteTextView in project material by rey5137.

the class ViewUtil method applyStyle.

/**
     * Apply any TextView style attributes to a view.
     * @param v
     * @param attrs
     * @param defStyleAttr
     * @param defStyleRes
     */
private static void applyStyle(TextView v, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
    String fontFamily = null;
    int typefaceIndex = -1;
    int styleIndex = -1;
    int shadowColor = 0;
    float dx = 0, dy = 0, r = 0;
    Drawable drawableLeft = null, drawableTop = null, drawableRight = null, drawableBottom = null, drawableStart = null, drawableEnd = null;
    boolean drawableDefined = false;
    boolean drawableRelativeDefined = false;
    /*
         * Look the appearance up without checking first if it exists because
         * almost every TextView has one and it greatly simplifies the logic
         * to be able to parse the appearance first and then let specific tags
         * for this View override it.
         */
    TypedArray a = v.getContext().obtainStyledAttributes(attrs, R.styleable.TextViewAppearance, defStyleAttr, defStyleRes);
    TypedArray appearance = null;
    int ap = a.getResourceId(R.styleable.TextViewAppearance_android_textAppearance, 0);
    a.recycle();
    if (ap != 0)
        appearance = v.getContext().obtainStyledAttributes(ap, R.styleable.TextAppearance);
    if (appearance != null) {
        int n = appearance.getIndexCount();
        for (int i = 0; i < n; i++) {
            int attr = appearance.getIndex(i);
            if (attr == R.styleable.TextAppearance_android_textColorHighlight) {
                v.setHighlightColor(appearance.getColor(attr, 0));
            } else if (attr == R.styleable.TextAppearance_android_textColor) {
                v.setTextColor(appearance.getColorStateList(attr));
            } else if (attr == R.styleable.TextAppearance_android_textColorHint) {
                v.setHintTextColor(appearance.getColorStateList(attr));
            } else if (attr == R.styleable.TextAppearance_android_textColorLink) {
                v.setLinkTextColor(appearance.getColorStateList(attr));
            } else if (attr == R.styleable.TextAppearance_android_textSize) {
                v.setTextSize(TypedValue.COMPLEX_UNIT_PX, appearance.getDimensionPixelSize(attr, 0));
            } else if (attr == R.styleable.TextAppearance_android_typeface) {
                typefaceIndex = appearance.getInt(attr, -1);
            } else if (attr == R.styleable.TextAppearance_android_fontFamily) {
                fontFamily = appearance.getString(attr);
            } else if (attr == R.styleable.TextAppearance_tv_fontFamily) {
                fontFamily = appearance.getString(attr);
            } else if (attr == R.styleable.TextAppearance_android_textStyle) {
                styleIndex = appearance.getInt(attr, -1);
            } else if (attr == R.styleable.TextAppearance_android_textAllCaps) {
                if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH)
                    v.setAllCaps(appearance.getBoolean(attr, false));
            } else if (attr == R.styleable.TextAppearance_android_shadowColor) {
                shadowColor = appearance.getInt(attr, 0);
            } else if (attr == R.styleable.TextAppearance_android_shadowDx) {
                dx = appearance.getFloat(attr, 0);
            } else if (attr == R.styleable.TextAppearance_android_shadowDy) {
                dy = appearance.getFloat(attr, 0);
            } else if (attr == R.styleable.TextAppearance_android_shadowRadius) {
                r = appearance.getFloat(attr, 0);
            } else if (attr == R.styleable.TextAppearance_android_elegantTextHeight) {
                if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)
                    v.setElegantTextHeight(appearance.getBoolean(attr, false));
            } else if (attr == R.styleable.TextAppearance_android_letterSpacing) {
                if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)
                    v.setLetterSpacing(appearance.getFloat(attr, 0));
            } else if (attr == R.styleable.TextAppearance_android_fontFeatureSettings) {
                if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)
                    v.setFontFeatureSettings(appearance.getString(attr));
            }
        }
        appearance.recycle();
    }
    a = v.getContext().obtainStyledAttributes(attrs, R.styleable.TextView, defStyleAttr, defStyleRes);
    int n = a.getIndexCount();
    for (int i = 0; i < n; i++) {
        int attr = a.getIndex(i);
        if (attr == R.styleable.TextView_android_drawableLeft) {
            drawableLeft = a.getDrawable(attr);
            drawableDefined = true;
        } else if (attr == R.styleable.TextView_android_drawableTop) {
            drawableTop = a.getDrawable(attr);
            drawableDefined = true;
        } else if (attr == R.styleable.TextView_android_drawableRight) {
            drawableRight = a.getDrawable(attr);
            drawableDefined = true;
        } else if (attr == R.styleable.TextView_android_drawableBottom) {
            drawableBottom = a.getDrawable(attr);
            drawableDefined = true;
        } else if (attr == R.styleable.TextView_android_drawableStart) {
            drawableStart = a.getDrawable(attr);
            drawableRelativeDefined = true;
        } else if (attr == R.styleable.TextView_android_drawableEnd) {
            drawableEnd = a.getDrawable(attr);
            drawableRelativeDefined = true;
        } else if (attr == R.styleable.TextView_android_drawablePadding) {
            v.setCompoundDrawablePadding(a.getDimensionPixelSize(attr, 0));
        } else if (attr == R.styleable.TextView_android_maxLines) {
            v.setMaxLines(a.getInt(attr, -1));
        } else if (attr == R.styleable.TextView_android_maxHeight) {
            v.setMaxHeight(a.getDimensionPixelSize(attr, -1));
        } else if (attr == R.styleable.TextView_android_lines) {
            v.setLines(a.getInt(attr, -1));
        } else if (attr == R.styleable.TextView_android_height) {
            v.setHeight(a.getDimensionPixelSize(attr, -1));
        } else if (attr == R.styleable.TextView_android_minLines) {
            v.setMinLines(a.getInt(attr, -1));
        } else if (attr == R.styleable.TextView_android_minHeight) {
            v.setMinHeight(a.getDimensionPixelSize(attr, -1));
        } else if (attr == R.styleable.TextView_android_maxEms) {
            v.setMaxEms(a.getInt(attr, -1));
        } else if (attr == R.styleable.TextView_android_maxWidth) {
            v.setMaxWidth(a.getDimensionPixelSize(attr, -1));
        } else if (attr == R.styleable.TextView_android_ems) {
            v.setEms(a.getInt(attr, -1));
        } else if (attr == R.styleable.TextView_android_width) {
            v.setWidth(a.getDimensionPixelSize(attr, -1));
        } else if (attr == R.styleable.TextView_android_minEms) {
            v.setMinEms(a.getInt(attr, -1));
        } else if (attr == R.styleable.TextView_android_minWidth) {
            v.setMinWidth(a.getDimensionPixelSize(attr, -1));
        } else if (attr == R.styleable.TextView_android_gravity) {
            v.setGravity(a.getInt(attr, -1));
        } else if (attr == R.styleable.TextView_android_scrollHorizontally) {
            v.setHorizontallyScrolling(a.getBoolean(attr, false));
        } else if (attr == R.styleable.TextView_android_includeFontPadding) {
            v.setIncludeFontPadding(a.getBoolean(attr, true));
        } else if (attr == R.styleable.TextView_android_cursorVisible) {
            v.setCursorVisible(a.getBoolean(attr, true));
        } else if (attr == R.styleable.TextView_android_textScaleX) {
            v.setTextScaleX(a.getFloat(attr, 1.0f));
        } else if (attr == R.styleable.TextView_android_shadowColor) {
            shadowColor = a.getInt(attr, 0);
        } else if (attr == R.styleable.TextView_android_shadowDx) {
            dx = a.getFloat(attr, 0);
        } else if (attr == R.styleable.TextView_android_shadowDy) {
            dy = a.getFloat(attr, 0);
        } else if (attr == R.styleable.TextView_android_shadowRadius) {
            r = a.getFloat(attr, 0);
        } else if (attr == R.styleable.TextView_android_textColorHighlight) {
            v.setHighlightColor(a.getColor(attr, 0));
        } else if (attr == R.styleable.TextView_android_textColor) {
            v.setTextColor(a.getColorStateList(attr));
        } else if (attr == R.styleable.TextView_android_textColorHint) {
            v.setHintTextColor(a.getColorStateList(attr));
        } else if (attr == R.styleable.TextView_android_textColorLink) {
            v.setLinkTextColor(a.getColorStateList(attr));
        } else if (attr == R.styleable.TextView_android_textSize) {
            v.setTextSize(TypedValue.COMPLEX_UNIT_PX, a.getDimensionPixelSize(attr, 0));
        } else if (attr == R.styleable.TextView_android_typeface) {
            typefaceIndex = a.getInt(attr, -1);
        } else if (attr == R.styleable.TextView_android_textStyle) {
            styleIndex = a.getInt(attr, -1);
        } else if (attr == R.styleable.TextView_android_fontFamily) {
            fontFamily = a.getString(attr);
        } else if (attr == R.styleable.TextView_tv_fontFamily) {
            fontFamily = a.getString(attr);
        } else if (attr == R.styleable.TextView_android_textAllCaps) {
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH)
                v.setAllCaps(a.getBoolean(attr, false));
        } else if (attr == R.styleable.TextView_android_elegantTextHeight) {
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)
                v.setElegantTextHeight(a.getBoolean(attr, false));
        } else if (attr == R.styleable.TextView_android_letterSpacing) {
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)
                v.setLetterSpacing(a.getFloat(attr, 0));
        } else if (attr == R.styleable.TextView_android_fontFeatureSettings) {
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)
                v.setFontFeatureSettings(a.getString(attr));
        }
    }
    a.recycle();
    if (shadowColor != 0)
        v.setShadowLayer(r, dx, dy, shadowColor);
    if (drawableDefined) {
        Drawable[] drawables = v.getCompoundDrawables();
        if (drawableStart != null)
            drawables[0] = drawableStart;
        else if (drawableLeft != null)
            drawables[0] = drawableLeft;
        if (drawableTop != null)
            drawables[1] = drawableTop;
        if (drawableEnd != null)
            drawables[2] = drawableEnd;
        else if (drawableRight != null)
            drawables[2] = drawableRight;
        if (drawableBottom != null)
            drawables[3] = drawableBottom;
        v.setCompoundDrawablesWithIntrinsicBounds(drawables[0], drawables[1], drawables[2], drawables[3]);
    }
    if (drawableRelativeDefined && Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
        Drawable[] drawables = v.getCompoundDrawablesRelative();
        if (drawableStart != null)
            drawables[0] = drawableStart;
        if (drawableEnd != null)
            drawables[2] = drawableEnd;
        v.setCompoundDrawablesRelativeWithIntrinsicBounds(drawables[0], drawables[1], drawables[2], drawables[3]);
    }
    Typeface tf = null;
    if (fontFamily != null) {
        tf = TypefaceUtil.load(v.getContext(), fontFamily, styleIndex);
        if (tf != null)
            v.setTypeface(tf);
    }
    if (tf != null) {
        switch(typefaceIndex) {
            case 1:
                tf = Typeface.SANS_SERIF;
                break;
            case 2:
                tf = Typeface.SERIF;
                break;
            case 3:
                tf = Typeface.MONOSPACE;
                break;
        }
        v.setTypeface(tf, styleIndex);
    }
    if (v instanceof AutoCompleteTextView)
        applyStyle((AutoCompleteTextView) v, attrs, defStyleAttr, defStyleRes);
}
Also used : Typeface(android.graphics.Typeface) TypedArray(android.content.res.TypedArray) Drawable(android.graphics.drawable.Drawable) SuppressLint(android.annotation.SuppressLint) AutoCompleteTextView(android.widget.AutoCompleteTextView)

Example 13 with AutoCompleteTextView

use of android.widget.AutoCompleteTextView in project android_frameworks_base by crdroidandroid.

the class PopupWindowVisibility method onCreate.

@Override
protected void onCreate(Bundle icicle) {
    super.onCreate(icicle);
    setContentView(R.layout.popup_window_visibility);
    mFrame = findViewById(R.id.frame);
    mHide = (Button) findViewById(R.id.hide);
    mHide.setOnClickListener(this);
    mShow = (Button) findViewById(R.id.show);
    mShow.setOnClickListener(this);
    Spinner spinner = (Spinner) findViewById(R.id.spinner);
    ArrayAdapter<String> spinnerAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_item, mStrings);
    spinnerAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
    spinner.setAdapter(spinnerAdapter);
    ArrayAdapter<String> autoAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_dropdown_item_1line, COUNTRIES);
    AutoCompleteTextView textView = (AutoCompleteTextView) findViewById(R.id.auto);
    textView.setAdapter(autoAdapter);
}
Also used : Spinner(android.widget.Spinner) ArrayAdapter(android.widget.ArrayAdapter) AutoCompleteTextView(android.widget.AutoCompleteTextView)

Example 14 with AutoCompleteTextView

use of android.widget.AutoCompleteTextView in project pictureapp by EyeSeeTea.

the class CheckBanAsync method onBindDialogView.

@Override
protected void onBindDialogView(View view) {
    //XXX Hack to avoid having a default edittext instead of our custom autocomplete
    //super.onBindDialogView(view);
    AutoCompleteTextView editText = mEditText;
    SharedPreferences preferences = view.getContext().getSharedPreferences("org.eyeseetea.surveillance_kh_preferences", view.getContext().MODE_PRIVATE);
    String key = view.getContext().getResources().getString(R.string.org_unit);
    String value = preferences.getString(key, "");
    editText.setText(value);
    ViewParent oldParent = editText.getParent();
    if (oldParent != view) {
        if (oldParent != null) {
            ((ViewGroup) oldParent).removeView(editText);
        }
        onAddEditTextToDialogView(view, editText);
    }
}
Also used : SharedPreferences(android.content.SharedPreferences) ViewParent(android.view.ViewParent) ViewGroup(android.view.ViewGroup) AutoCompleteTextView(android.widget.AutoCompleteTextView)

Example 15 with AutoCompleteTextView

use of android.widget.AutoCompleteTextView in project android_frameworks_base by crdroidandroid.

the class AutoCompleteTextViewActivityLandscape method onCreate.

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.auto_complete_list);
    ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_dropdown_item_1line, COUNTRIES);
    AutoCompleteTextView textView = (AutoCompleteTextView) findViewById(R.id.edit);
    textView.setAdapter(adapter);
}
Also used : ArrayAdapter(android.widget.ArrayAdapter) AutoCompleteTextView(android.widget.AutoCompleteTextView)

Aggregations

AutoCompleteTextView (android.widget.AutoCompleteTextView)106 View (android.view.View)62 TextView (android.widget.TextView)44 ArrayAdapter (android.widget.ArrayAdapter)38 Button (android.widget.Button)27 EditText (android.widget.EditText)21 OnClickListener (android.view.View.OnClickListener)20 KeyEvent (android.view.KeyEvent)19 AdapterView (android.widget.AdapterView)17 Intent (android.content.Intent)16 ImageView (android.widget.ImageView)14 Editable (android.text.Editable)10 TextWatcher (android.text.TextWatcher)10 ArrayList (java.util.ArrayList)9 Dialog (android.app.Dialog)8 ListView (android.widget.ListView)8 Spinner (android.widget.Spinner)8 DialogInterface (android.content.DialogInterface)7 InputMethodManager (android.view.inputmethod.InputMethodManager)7 SuppressLint (android.annotation.SuppressLint)6