gpt4 book ai didi

android - Circle image button take onClick event (when touch outside its image) 应由附近的按钮接收

转载 作者:行者123 更新时间:2023-11-30 01:52:51 25 4
gpt4 key购买 nike

我想制作一个包含 3 个图像按钮的组 View ,当我点击一个圆圈时,该圆圈会变大,而其他圆圈会变小。
1 2 3
问题是当我点击较小的按钮时,最大的按钮改为接收点击事件。
例如,在这种情况下,顶部按钮将接收点击事件。
4
如果我想要中间按钮,我必须点击离大按钮远一点的地方,它可能在中间按钮的圆圈之外,如下面的截图所示。
5
这是组 View 的布局 xml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:layout_width="200dp"
android:layout_height="200dp">
<ImageButton
android:src="@drawable/blue100"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/mid_circle"
android:background="@null"
android:layout_gravity="right|center_vertical" />

<ImageButton
android:src="@drawable/green100"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/top_circle"
android:background="@null"
android:layout_gravity="center_horizontal|top" />

<ImageButton
android:src="@drawable/red100"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/bot_circle"
android:background="@null"
android:layout_gravity="center_horizontal|bottom" />
</FrameLayout>

源代码可以在 [这里] ( https://github.com/ttpro1995/Android_ThreeCircleViewGroup/releases/tag/0.1 ) 下载我希望当我点击较小的按钮时,较小的按钮应该接收点击事件,而不是大按钮。请帮我解决。
谢谢。

最佳答案

发生这种情况是因为底部图像覆盖了中间图像 Problem Screen

现在的解决方案是您需要将 circlegroupview framlayout 布局宽度 200dp 更改为 250dp 或根据您的需要。 after changing width 200dp to 250dp

我认为我们不能将矩形转换为圆形,但您可以裁剪图像,移除图像包围的空间,从而覆盖最小面积。

关于android - Circle image button take onClick event (when touch outside its image) 应由附近的按钮接收,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32744223/

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