在布局xml中增加一个button
<Button
android:id="@+id/my_button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button 1"
android:onClick="myButtonClickHandler" />
可以看到我们定义的onClick的事件为myButtonClickHandler
在java中实现
public void myButtonClickHandler(View view) {
Log.d(TAG, "myButtonClickHandler: 1");
}
首先在布局xml中增加button
<Button
android:id="@+id/my_button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button 2" />
可以看到button的id为my_button2,这个在后面有很大的作用
Button myButton = findViewById(R.id.my_button2);
myButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Log.d(TAG, "myButtonClickHandler: 2");
}
});
把这个修改为lambda
Button myButton3 = findViewById(R.id.my_button3);
myButton3.setOnClickListener(view ->{
Log.d(TAG, "myButtonClickHandler: 3");
});
在布局xml中增加一个button
<Button
android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click Me"/>
整个代码如下:
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
final String TAG = "zhongjun";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button myButton = findViewById(R.id.my_button);
myButton.setOnClickListener(this);
}
public void onClick(View v) {
Log.d(TAG, "onClick: ");
}
}