博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Head Fisrt Android Development读书笔记(1)Adding Behavior
阅读量:5236 次
发布时间:2019-06-14

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

Make a button action

1. use the Button onClick attribute to declare the name of the action method

2.Open the Activity that displays the layout with the Button

3.Add a method with a name matching the onClick attribute value

4.Make sure that method takes in a single View as a parameter

 

@string/haiku:

find it at strings.xml

<string name="haiku">I dreamed of a phone</string>

 

android development refernece:

developer.android.com

android:visibility="invisible"

 

<Button ...

 android:onClick="onLoveButtonClicked">

The action method will be called on the activity that launched the screen.

public void onLoveButtonClicked(View view) {...}

 

From XML to Java (use the method: findViewById)

R file:

Button button = (Button) findViewById(R.id.Button01)

 

 

转载于:https://www.cnblogs.com/java20130722/archive/2012/10/07/3206872.html

你可能感兴趣的文章
如何修改被编译后DLL文件 (转发)
查看>>
C++按格式接收输入字符(京东,滴滴,360笔试必用)
查看>>
代理ARP
查看>>
go 学习笔记(4) ---项目结构
查看>>
分割线细线
查看>>
java 中的一些运算符问题
查看>>
css切换--使用cookie
查看>>
java中静态代码块的用法 static用法详解
查看>>
Java线程面试题
查看>>
Paper Reading: Relation Networks for Object Detection
查看>>
Android中点中overlay弹出带尾巴的气泡的实现
查看>>
Mybatis接口中传递多个参数
查看>>
Dreamweaver层使用八定律
查看>>
Java IO流学习总结
查看>>
day22 01 初识面向对象----简单的人狗大战小游戏
查看>>
数组的几种常用方法总结
查看>>
递归函数,二分运算,正则表达式
查看>>
阅读软件工程的问题
查看>>
【Netty】UDP广播事件
查看>>
(4)Numpy+矩阵计算+和生成
查看>>