Android Button点击事件无效的解决方法 Android编程出现Button点击事件无效的解决办法示例
清澈@Cherry 人气:0想了解Android编程出现Button点击事件无效的解决办法示例的相关内容吗,清澈@Cherry在本文为您仔细讲解Android Button点击事件无效的解决办法的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Android,Button,点击事件无效,解决办法,下面大家一起来学习吧。
本文实例讲述了Android编程出现Button点击事件无效的解决方法。分享给大家供大家参考,具体如下:
遇到这样一个问题,给一个界面上方的按钮添加了点击事件,但死活没反应,而放在界面下方的3个按钮,都有相应点击事件,百度了一下无非有两种可能:
1.button没有初始化或者button初始化多次,导致混乱。
2.button点击事件写错,无法监听。
但我确定的是这些都是没有错的,后来找到的原因是下方的scroll布局覆盖了上方的button的布局,使用了fill_parent,所以获取不到点击事件,如下出错代码:
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:gravity="center_vertical" > <LinearLayout android:layout_width="fill_parent" android:layout_height="<span style="font-family: Arial, Helvetica, sans-serif;">fill_parent</span><span style="font-family: Arial, Helvetica, sans-serif;">"</span> android:orientation="horizontal" > <Button android:id="@+id/canshusback" android:layout_width="25dp" android:layout_height="25dp" android:layout_marginLeft="5dp" android:layout_marginTop="5dp" android:background="@drawable/last" /> </LinearLayout> <ScrollView android:layout_width="fill_parent" android:layout_height="fill_parent" > <RelativeLayout android:id="@+id/allti" android:layout_width="fill_parent" android:layout_height="fill_parent" android:gravity="center_vertical" >
后来将上方的按钮设置成高度40dp之后,将下方的scroll离上方有一段距离,就可以监听按钮了。
希望本文所述对大家Android程序设计有所帮助。
加载全部内容