Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Android 进行编程,现在我想在我的应用程序中添加一个功能,该功能是响应点击我背景的某个特定区域而没有任何类型的反馈。
我正在做一个应用程序作为送给我女朋友的礼物,当她点击某个地方时,我想给她一个惊喜。令人惊讶的是,它不应该是按钮、文本或图片,而应该是与背景的其他区域一样正常的某个地方。
我知道也许我可以插入与背景图案相同的图片,但是有一些更聪明的方法吗?
您可以创建一个透明的按钮。
<Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@android:color/transparent" android:visibility="visible" />