android ImageView onTouch和onClick永远不会被调用?

时间:2013-12-26 17:02:15

标签: android android-imageview onclicklistener ontouchlistener

为包含图像的颜色选择器创建一个自定义视图,我将在触摸机器人上从此图像中获取颜色,而不会调用onTouch(View v,MotionEvent ev)和onClick(View v)。

所以这是我的观点类:

public class ChangeColor extends RelativeLayout {

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

    private void init(){
        LayoutInflater inflater = (LayoutInflater)getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        inflater.inflate(R.layout.change_color, this);
    }

    @Override
    protected void onFinishInflate() {
        super.onFinishInflate();

        ImageView iv = (ImageView)findViewById(R.id.colorScaleImageView);
        final Bitmap bitmap = ((BitmapDrawable) iv.getDrawable()).getBitmap();

        iv.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                Log.d("ImageView", "onClick();");
            }
        });
        iv.setOnTouchListener(new OnTouchListener() {
            @Override
            public boolean onTouch(View v, MotionEvent ev) {
                Log.d("ChangeColor", "onTouch();");
                switch (ev.getAction()){
                case MotionEvent.ACTION_DOWN:
                case MotionEvent.ACTION_MOVE:
                    int c = bitmap.getPixel((int)ev.getX(), (int)ev.getY());
                    SettingsManager.setColor(c);
                    Log.d("ChangeColor", "" + c);
                    return false;
                default:
                    return true;
                }
            }
        });
    }
}

和布局xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/RelativeLayout1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/colorScaleImageView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/seekBar1"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:clickable="true"
        android:layout_gravity="center_horizontal"
        android:src="@drawable/background_color" />

<SeekBar
    android:id="@+id/seekBar1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_above="@+id/textView1"
    android:layout_alignParentLeft="true"
    android:focusable="false"
    android:maxHeight="8dp"
    android:minHeight="8dp"
    android:paddingLeft="7dp"
    android:paddingRight="7dp"
    android:progressDrawable="@drawable/seekbar_progress"
    android:thumb="@drawable/seekbar_thumb_"
    android:thumbOffset="7dp" />

</RelativeLayout>

因此LogCat中没有出现任何日志消息。

P.S。我在SO上看到了几个类似的问题,但他们并没有帮助我。 P.P.S.此视图用于片段,片段用于Activity。我使用OnClickListener在该活动中添加了一个全屏视图,以便查看点击是否转到父视图,我只能看到该背景视图中的日志消息,如果我点击图像,则只能点击图像外部而没有消息。

感谢。

1 个答案:

答案 0 :(得分:0)

您已扩展相对布局,但在此示例中未调用它。

在XML中,您应该实现您开发的类而不是RelativeLayout

尝试

<?xml version="1.0" encoding="utf-8"?>
<**namespace**.ChangeColor xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<ImageView
    android:id="@+id/colorScaleImageView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_above="@+id/seekBar1"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:clickable="true"
    android:layout_gravity="center_horizontal"
    android:src="@drawable/background_color" />

</**namespace**.ChangeColor>

**编辑 这是第一次是正确的。要实现它,你必须将ChangeColor附加到另一个布局,它不能在它被调用时试图膨胀的布局中调用。防爆。 ChangeColor膨胀change_color.xml,你不能在ChangeColor.init()正在膨胀的布局中调用标签NAMESPACE.ChangeColor。