编程语言
首页 > 编程语言> > 在Android视图上以编程方式设置’?selectableItemBackground’

在Android视图上以编程方式设置’?selectableItemBackground’

作者:互联网

在xml中,我经常这样做来模仿onClick效果:

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

    ...

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

有没有办法在java中访问?selectableItemBackground?

解决方法:

对于appcompat你可以使用,

TypedValue outValue = new TypedValue();
getContext().getTheme().resolveAttribute(android.R.attr.selectableItemBackground, outValue, true);
cardView.setBackgroundResource(outValue.resourceId);

标签:android,xml,android-layout,android-cardview
来源: https://codeday.me/bug/20191004/1851723.html