gpt4 book ai didi

android - 单击时如何突出显示 TextView 或 LinearLayout?

转载 作者:可可西里 更新时间:2023-11-01 18:58:10 26 4
gpt4 key购买 nike

我有一个包含三个 TextView 的 LinearLayout。我想在用户单击 TextView 时突出显示 TextView 或整个布局。他们有什么方法可以实现吗?

谢谢。

最佳答案

我假设有 2 个布局

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"

>

<LinearLayout
android:id="@+id/root"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?android:attr/selectableItemBackground"
android:clickable="true"
>
...
</LinearLayout>
</LinearLayout>

findViewById(R.id.root).setOnClickListener(...);

关于android - 单击时如何突出显示 TextView 或 LinearLayout?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2181062/

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