如何在Android Edittext上以编程方式设置drawableRight?

问题描述 投票:0回答:10

我知道 XML 中的 set drawableRight 。但我需要以编程方式执行此操作,因为它会根据某些条件进行更改。

android drawable
10个回答
291
投票

您可以使用以下功能:

editText.setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.drawableRight, 0);

或者(如果你想传递可绘制对象本身而不是它的 ID)

editText.setCompoundDrawablesWithIntrinsicBounds(null, null, ContextCompat.getDrawable(context,R.drawable.drawableRight), null)

可绘制位置对应的参数顺序为:左、上、右、下


10
投票

进一步了解这里

EditText myEdit = (EditText) findViewById(R.id.myEdit);
myEdit.setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.icon, 0);  
// where params are (left,top,right,bottom)

您还可以通过编程方式设置可绘制填充:

myEdit.setCompoundDrawablePadding("Padding value");

4
投票

尝试如下:

Drawable img = getContext().getResources().getDrawable( R.drawable.smiley );
EdtText.setCompoundDrawablesWithIntrinsicBounds( 0, 0, img, 0);

编辑:

 int img = R.drawable.smiley;
 EdtText.setCompoundDrawablesWithIntrinsicBounds( 0, 0, img, 0);

4
投票

尝试:

EditText editFirstname = (EditText) findViewById(R.id.edit_fname);
Drawable icUser = getResources().getDrawable(R.drawable.ic_user);
editFirstname.setCompoundDrawablesWithIntrinsicBounds(null, null, icUser, null);

然后您可以向该特定可绘制对象添加触摸侦听器。


3
投票

为了同时更改左右两侧,我使用了这一行。

download.setCompoundDrawablesWithIntrinsicBounds( R.drawable.ic_lock_open_white_24dp, 0, R.drawable.ic_lock_open_white_24dp, 0);

2
投票
int img = R.drawable.smiley;
editText.setCompoundDrawables( null, null, img, null );

解释这里

setCompoundDrawablesWithIntrinsicBounds (int left, int top, int right, int bottom)

将可绘制对象(如果有)设置为显示在文本的左侧、上方、右侧和下方。如果您不想在那里使用 Drawable,请使用 0。 Drawable 的边界将设置为其固有边界。


2
投票
        et_feedback.setOnFocusChangeListener(new View.OnFocusChangeListener() {
            @Override
            public void onFocusChange(View v, boolean hasFocus) {
                if (hasFocus) {

                }
              et_feedback.setCompoundDrawablesWithIntrinsicBounds(0,R.mipmap.feedback_new, 0, 0);                
               et_feedback.setTextColor(Color.BLACK);

            }
        });

使用此隐藏可绘制对象

et_feedback.setCompoundDrawablesWithIntrinsicBounds(0,0, 0, 0);

2
投票

如果它需要 android 图形可绘制那么这将工作

Drawable dw = getApplicationContext().getResources().getDrawable(R.drawable.edit);
Button start = (Button)findViewById(R.id.buttonStart);
start.setCompoundDrawablesWithIntrinsicBounds(dw, null, null, null);

1
投票

您可以使用内置函数 setCompoundDrawablesWithIntrinsicBounds() 中的 editText 视图(此处为 txview)来执行您要查找的操作

在我的代码中我像这样使用它。 txview.setCompoundDrawablesWithIntrinsicBounds(0,0,R.drawable.ic_arrow_drop_up,0);

txview.setCompoundDrawablesWithIntrinsicBounds(left,top,right,bottom);

0
投票

从 XML 布局中使用以下行

  android:drawableStart="@drawable/ic_promocode"

来自 Kotlin 或 Java 文件

 etPromoCode.setStartDrawable(R.drawable.ic_promocode)

完成。☻♥ 保留代码。

© www.soinside.com 2019 - 2024. All rights reserved.