国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統(tǒng) > Android > 正文

Android編程出現(xiàn)Button點擊事件無效的解決方法示例

2019-10-22 18:15:39
字體:
供稿:網(wǎng)友

本文實例講述了Android編程出現(xiàn)Button點擊事件無效的解決方法。分享給大家供大家參考,具體如下:

遇到這樣一個問題,給一個界面上方的按鈕添加了點擊事件,但死活沒反應(yīng),而放在界面下方的3個按鈕,都有相應(yīng)點擊事件,百度了一下無非有兩種可能:

1.button沒有初始化或者button初始化多次,導(dǎo)致混亂。
2.button點擊事件寫錯,無法監(jiān)聽。

但我確定的是這些都是沒有錯的,后來找到的原因是下方的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" >

后來將上方的按鈕設(shè)置成高度40dp之后,將下方的scroll離上方有一段距離,就可以監(jiān)聽按鈕了。

希望本文所述對大家Android程序設(shè)計有所幫助。


注:相關(guān)教程知識閱讀請移步到Android開發(fā)頻道。
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 曲靖市| 凌源市| 拜泉县| 东乡族自治县| 汤原县| 西和县| 大连市| 栖霞市| 东海县| 绥德县| 寿宁县| 合水县| 南华县| 嘉峪关市| 漳平市| 洱源县| 环江| 玉门市| 瓦房店市| 云林县| 和硕县| 桐乡市| 扬州市| 南京市| 临桂县| 大姚县| 和林格尔县| 墨江| 兰考县| 浦江县| 大埔区| 巫山县| 辰溪县| 罗源县| 沐川县| 安达市| 周口市| 东阳市| 浦东新区| 江山市| 申扎县|