久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

無法在 TextInputLayout 內的 EditText 中使用 drawable

Unable to use drawable in EditText inside TextInputLayout(無法在 TextInputLayout 內的 EditText 中使用 drawable)
本文介紹了無法在 TextInputLayout 內的 EditText 中使用 drawable的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

問題描述

限時送ChatGPT賬號..

我最近將 Android 設計庫從 24.2.1 升級到了 25.0.0.在此之后 EditText 中的drawableX"功能不起作用.

I recently upgraded Android Design library from 24.2.1 to 25.0.0. After this the "drawableX" feature in EditText doesn't work.

編輯 01.11:我了解到,如果您使用 android:drawableStart 而不是 android:drawableLeft,則在 xml 中設置 drawable 有效.但是以編程方式設置設置drawables不起作用.我用它來制作一個清除"按鈕來清空 EditText.但是這個功能現在被打破了.如果這是來自 Google 的故意或錯誤,我將不勝感激任何解決方法或知識!

EDIT 01.11: I learned that setting drawable in xml works if you use android:drawableStart instead of android:drawableLeft. But setting setting drawables programatically does not work. I use this to make a "Clear"-button to empty the EditText. But this feature is broken now. I would appreciate any work-arounds or knowledge about if this is intentional from Google or a bug!

我的可清除編輯文本代碼以前有效但現在無效:

My code for Clearable edit-text that worked before but doesn't now:

public class ClearableErrorTextInputEditText extends ErrorTextInputEditText implements View.OnFocusChangeListener, View.OnTouchListener, TextWatcher {

private Drawable resIcon;
private OnFocusChangeListener childFocusListener;

public ClearableErrorTextInputEditText(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    setup();
}

public ClearableErrorTextInputEditText(Context context, AttributeSet attrs) {
    super(context, attrs);
    setup();
}

public ClearableErrorTextInputEditText(Context context) {
    super(context);
    setup();
}

@Override
public boolean onTouch(View v, MotionEvent event) {
    if (event.getAction() == MotionEvent.ACTION_UP) {
        if (getCompoundDrawables()[2] != null) {
            final boolean tappedClose = event.getX() > (getWidth() - getPaddingRight() - resIcon.getIntrinsicWidth());
            if (tappedClose) {
                setText("");
                return false; // true will fail on emulator running 2.1 and physical keyboard / scroll wheel
            }
        }
    }
    return false;
}

@Override
public void setOnFocusChangeListener(OnFocusChangeListener l) {
    childFocusListener = l;
}

@Override
public void onFocusChange(View v, boolean hasFocus) {
    setClearIconVisible(hasFocus && getText().length() > 0);

    if (childFocusListener!=null){
        childFocusListener.onFocusChange(v, hasFocus);
    }
}

@Override
public void onTextChanged(CharSequence s, int start, int before, int count){
    super.onTextChanged(s, start, before, count);
    setClearIconVisible(isFocused() && s.length() > 0);
}

@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {} // not interesting

@Override
public void afterTextChanged(Editable s) {} //  // not interesting

private void setup() {
    if(isInEditMode()){
        return;
    }

    resIcon = getResources().getDrawable(R.drawable.ic_clear, null);
    resIcon.setBounds(0, 0, resIcon.getIntrinsicWidth(), resIcon.getIntrinsicHeight());

    setClearIconVisible(false);

    super.setOnTouchListener(this);
    super.setOnFocusChangeListener(this);
    addTextChangedListener(this);
}

private void setClearIconVisible(final boolean visible){
    final Drawable icon = visible ? resIcon : null;
    setCompoundDrawables(getCompoundDrawables()[0],
            getCompoundDrawables()[1], icon, getCompoundDrawables()[3]);
}

推薦答案

根據 Ahmed Ashraf G 的回答,我找到了解決方案.更改以下代碼:

Based on the answer by Ahmed Ashraf G, I was able to find the solution. Changing the following code:

setCompoundDrawables(getCompoundDrawables()[0],
        getCompoundDrawables()[1], icon, getCompoundDrawables()[3]);

到:

setCompoundDrawablesRelative(getCompoundDrawablesRelative()[0],
            getCompoundDrawablesRelative()[1], icon, getCompoundDrawablesRelative()[3]);

從 StackOverflow 上的其他地方(文檔沒有提到這一點),xxxCompoundDrawablesXxx 和 xxxCompundDrawablesRelativeXxx 之間的區別在于相對版本考慮了 RTL 語言,即它們與使用 drawableStart 而不是 drawableLeft 相同.

From other places on StackOverflow (the documentation does NOT mention this) the difference between xxxCompoundDrawablesXxx and xxxCompundDrawablesRelativeXxx is that the relative versions take into account RTL-languages, ie they are the same as using drawableStart instead of drawableLeft.

因此,總而言之,Google 已經破壞了 TextInputLayout 內 EditText 的所有不是 RTL 方法的方法.由于新方法是在 API 級別 17 中添加的,我認為這是主要錯誤,可能會在未來的更新中修復

So in conclusion, Google has broken all methods that are not RTL-methods for EditText inside TextInputLayout. Since the new methods are added in API level 17 I see this as major bug, that will probably be fixed in future updates

這篇關于無法在 TextInputLayout 內的 EditText 中使用 drawable的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

相關文檔推薦

Cut, copy, paste in android(在android中剪切、復制、粘貼)
android EditText blends into background(android EditText 融入背景)
Change Line Color of EditText - Android(更改 EditText 的線條顏色 - Android)
EditText showing numbers with 2 decimals at all times(EditText 始終顯示帶 2 位小數的數字)
Changing where cursor starts in an expanded EditText(更改光標在展開的 EditText 中的開始位置)
EditText, adjustPan, ScrollView issue in android(android中的EditText,adjustPan,ScrollView問題)
主站蜘蛛池模板: 成人h片在线观看 | 国产精品99久久久久久久久久久久 | 久久久精品影院 | 日本在线小视频 | 日本精品一区 | 久久免费视频网 | 天天久久 | 四虎永久免费地址 | 一区在线播放 | 欧美 日韩 在线播放 | 欧美日韩一卡 | 中文字幕av网站 | av中文字幕在线 | 久久亚洲欧美日韩精品专区 | 国产精品99久久久久久人 | 北条麻妃99精品青青久久 | 色精品视频 | 国产露脸对白88av | 亚洲一区不卡在线 | 国产91成人| 中文字幕二区三区 | 久久久久久久久久久高潮一区二区 | 精品中文字幕一区二区三区 | 国产日韩欧美二区 | 国产日韩精品一区二区三区 | 成人精品免费视频 | 日一区二区 | 天天精品在线 | 久久在线看 | 久久久久久综合 | 午夜精品久久久久久久久久久久久 | 亚洲免费精品 | 欧美在线视频一区 | 91黄在线观看 | 亚洲第一视频网站 | 中文在线a在线 | 欧美成人精品一区二区男人看 | 欧美v日韩v | 久久亚洲一区 | 欧美一极视频 | 免费观看成人性生生活片 |