博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
对另一个布局文件里的Button按钮进行监听
阅读量:6406 次
发布时间:2019-06-23

本文共 677 字,大约阅读时间需要 2 分钟。

  布局文件里面的Button写上 onClick = “onClick”,然后在你当前Activity的onClick方法中根据Button的id来做相应的操作
android:id="@+id/single_file_download"                 android:layout_width="0dp"                 android:layout_height="match_parent"                 android:layout_weight="1"                 android:paddingLeft="5.7dp"                 style="@style/file_list"                 android:clickable="true"                 android:onClick="onClick" 布局文件里面的onClick,这里是你要监听的那个Button,然后在你想的Activity里面的 public void onClick(View view) {
switch (view.getId()) {
case R.id.single_file_download: //监听到点击button点击事件的具体操作 break; } }

转载于:https://www.cnblogs.com/new-comer/p/5304136.html

你可能感兴趣的文章
Objective-C类目延展协议
查看>>
【论文:麦克风阵列增强】An alternative approach to linearly constrained adaptive beamforming...
查看>>
[LeetCode] Find Median from Data Stream
查看>>
office等资料下载
查看>>
[LeetCode]题解(python):149-Max Points on a Line
查看>>
WPF路径动画(动态逆向动画)
查看>>
ESXi 主机创建datastore失败
查看>>
day3-函数介绍
查看>>
Low Level Reader Protocol (LLRP) 简介
查看>>
[Micropython]TPYBoard v10x NRF24L01无线通讯模块使用教程
查看>>
mysql中show processlist过滤和杀死线程
查看>>
dxRangeTrackBar使用教程
查看>>
最新Sublime Text 2 激活 汉化
查看>>
spring为什么推荐使用构造器注入
查看>>
C# 使用反射 遍历输出 对象的属性
查看>>
基础数据类型之字典
查看>>
第七次作业
查看>>
linux 系统启动
查看>>
51nod 1317 相似字符串对(容斥原理+思维)
查看>>
2017 Multi-University Training Contest - Team 2 TrickGCD(组合数学)
查看>>