在图像的按下状态下更改不透明度

时间:2013-06-07 14:21:21

标签: android android-layout

我使用imageview作为按钮。 对于正常状态,它是带有文本的简单红色图像,在按下状态下我想改变图像的不透明度。

enter image description here

现在处于按下状态我想降低此图像的不透明度。 要做到这一点,我知道的选择是        1.创建具有所需不透明度的其他图像,并使用选择器来获得效果        2.对选择器中的两个状态使用颜色代码; 但是在这里我已经有一个图像状态作为图像,对于下一个状态我只想降低此图像中的不透明度。

7 个答案:

答案 0 :(得分:7)

button.setOnTouchListener(this);
@Override
public boolean onTouch(View v, MotionEvent event) {
  if (v == button) {
    if (event.getAction() == MotionEvent.ACTION_DOWN) {
      v.setAlpha(0.5f);
    } else {
      v.setAlpha(1f);
    }
  }
  return false;
}

答案 1 :(得分:2)

您可以使用标志来存储状态并调用它来改变不透明度:

button.getBackground().setAlpha(60);

答案 2 :(得分:1)

我必须在上面更改一点正确答案才能使其正常工作:当你取消触摸时,只有不透明度应该改变,它不应该闪烁。

ImageButton imageButton = (ImageButton) findViewById(viewId);
imageButton.setOnTouchListener(this);
@Override
public boolean onTouch(View v, MotionEvent event) {
  if (v == button) {
    if (event.getAction() == MotionEvent.ACTION_DOWN) {
      v.setAlpha(0.5f);
    } else {
      v.setAlpha(1f);
    }
  }
  return false;
}

答案 3 :(得分:1)

创建一个自定义ImageView类,即AlphaImageView,其范围从ImageView延伸,并覆盖setPressed()方法,如下所示:

@Override
public void setPressed(boolean pressed) {
    super.setPressed(pressed);
    setAlpha(pressed ? 0.5f : 1.0f);
}

答案 4 :(得分:0)

ImageButton imageButton = (ImageButton) findViewById(viewId);     
imageButton.setOnTouchListener(this);

@Override
public boolean onTouch(View v, MotionEvent event)
{
     if(event.getAction() == MotionEvent.ACTION_DOWN)
    {
         v.setAlpha(.5f);
    } 
    else if (event.getAction() == MotionEvent.ACTION_UP)
    {
        v.setAlpha(1f);
    }
    return true;    //make shure to return true
}

答案 5 :(得分:0)

按下时我的班级变更ImageView alpha

public class PressableImageView extends AppCompatImageView {
    private static final float DEFAULT_ALPHA_WHEN_PRESS = 0.5f;
    private static final float DEFAULT_ALPHA = 1f;

    public PressableImageView(Context context) {
        super(context);
    }

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

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

    private void refresh() {
        if (isPressed()) {
            setAlpha(DEFAULT_ALPHA_WHEN_PRESS);
            invalidate();
            return;
        }
        setAlpha(DEFAULT_ALPHA);
        invalidate();
    }

    @Override
    public void setPressed(boolean pressed) {
        super.setPressed(pressed);
        refresh();
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        if (event.getAction() == android.view.MotionEvent.ACTION_DOWN) {
            setPressed(true);
        } else if (event.getAction() == android.view.MotionEvent.ACTION_UP) {
            setPressed(false);
            float x = event.getX();
            float y = event.getY();
            boolean isInside = (x > 0 && x < getWidth() && y > 0 && y < getHeight());
            if(isInside){
                performClick();
            }
        }
        return true;
    }
}

使用

<....PressableImageView
    android:id="@+id/imageview"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@mipmap/ic_launcher"
    />

答案 6 :(得分:0)

你也可以使用android选择器(它不需要你创建自定义控件或逻辑)

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true">
      <bitmap xmlns:android="http://schemas.android.com/apk/res/android" android:alpha="0.3" android:src="@drawable/your_cancel_button_image" />
    </item>
    //other selector states 
</selector>