Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.9k views
in Technique[技术] by (71.8m points)

android - How to make a child view not clickable inside a clickable container

I have a layout container like described below:

<ConstraintLayout
android:id="@+id/container"
...>
   <child1/>
   <child2/>
   <child3/>
</ConstraintLayout>

In my code, I have to attach a click listener to the container to be able to execute an action when the user clicks on any area of the container. What is the best solution to exclude the child2 from this constraint? I mean, all the container areas should be clickable but the child2 shouldn't.

Thank you in advance


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Tried the following and it worked, just a workaround and it may not be the optimal solution

activity_main.xml

<ConstraintLayout
android:id="@+id/container"
android:onClick = "doSomething"
...>
   <child1/>
   <child2
   android:onClick="doNothing"/>
   <child3/>
</ConstraintLayout>

Activity class

//all but child2 responds to the clickevent
    fun doNothing(view: View) {
        //does nothing,empty function
    }

    fun doSomething(view: View) {
        Toast.makeText(this, "did something", Toast.LENGTH_SHORT).show()
    }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...