首页 > 系统 > Android > 正文

Android编程出现Button点击事件无效的解决方法示例

2019-10-22 18:15:39
字体:
来源:转载
供稿:网友

本文实例讲述了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程序设计有所帮助。


注:相关教程知识阅读请移步到Android开发频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表