gpt4 book ai didi

android - 在 Android View 上以编程方式设置 '?selectableItemBackground'

转载 作者:IT王子 更新时间:2023-10-28 23:45:27 25 4
gpt4 key购买 nike

在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 - 在 Android View 上以编程方式设置 '?selectableItemBackground',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37987732/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com