TextView上的OnClick事件在CardView上停止RippleEffect

Com*_*ler 4 android android-layout android-cardview android-5.0-lollipop

我在CardView中有一个TextView.通过添加OnClick事件并添加属性为CardView上的Lollipop启用涟漪效果时:

android:foreground="?android:attr/selectableItemBackground"

它工作正常.但是在向TextView添加OnClick事件后,当我单击TextView外部时,仍会显示涟漪效果,但在单击TextView区域时它不会显示.

即使我单击TextView,是否还有显示波纹?

这是xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:tools="http://schemas.android.com/tools"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:paddingLeft="@dimen/activity_horizontal_margin"
                android:paddingRight="@dimen/activity_horizontal_margin"
                android:paddingTop="@dimen/activity_vertical_margin"
                android:paddingBottom="@dimen/activity_vertical_margin"
                tools:context=".MainActivity">

    <android.support.v7.widget.CardView
        android:id="@+id/news_card"
        android:foreground="?android:attr/selectableItemBackground"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <TextView
            android:id="@+id/text"
            android:text="Test String"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

    </android.support.v7.widget.CardView>

</RelativeLayout>
Run Code Online (Sandbox Code Playgroud)

这是代码:

protected void onCreate (Bundle savedInstanceState) {
    super.onCreate (savedInstanceState);
    setContentView (R.layout.activity_main);

    View v = findViewById (R.id.news_card);
    v.setOnClickListener (new View.OnClickListener () {
        @Override public void onClick (final View v) {

        }
    });

    View textView = findViewById (R.id.text);
    textView.setOnClickListener (new View.OnClickListener () {
        @Override public void onClick (final View v) {

        }
    });
}
Run Code Online (Sandbox Code Playgroud)

ala*_*anv 6

一种选择是将按下的状态和热点位置转发到父视图.

// Since the host view actually supports clicks, you can return false
// from your touch listener and continue to receive events.
myTextView.setOnTouchListener(new View.OnTouchListener() {
    @Override
    public boolean onTouch(View v, MotionEvent e) {
        // Convert to card view coordinates. Assumes the host view is
        // a direct child and the card view is not scrollable.
        float x = e.getX() + v.getLeft();
        float y = e.getY() + v.getTop();

        // Simulate motion on the card view.
        myCardView.drawableHotspotChanged(x, y);

        // Simulate pressed state on the card view.
        switch (e.getActionMasked()) {
            case MotionEvent.ACTION_DOWN:
                myCardView.setPressed(true);
                break;
            case MotionEvent.ACTION_UP:
            case MotionEvent.ACTION_CANCEL:
                myCardView.setPressed(false);
                break;
        }

        // Pass all events through to the host view.
        return false;
    }
});
Run Code Online (Sandbox Code Playgroud)

  • 这有效.但是动画并不像默认行为那样流畅.我最终删除了TextView上的onClickListener并实现onTouchListener来执行onClickListener所做的操作并返回false以允许CardView显示涟漪效应. (2认同)