Android中Button点击事件无效如何解决

Android中Button点击事件无效如何解决

本篇文章给大家分享的是有关Android中Button点击事件无效如何解决,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。

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 >fill_parent</span><span >"</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" >

以上就是Android中Button点击事件无效如何解决,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注行业资讯频道。