<Button android:id="@+id/buttonsend" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="SEND" android:onClick="sendMsg" /> Consider the above XML code and identify the appropriate Java code code example
Example: android onlcik java
Button button = (Button) findViewById(R.id.button_send);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// Do something in response to button click
}
});
//https://developer.android.com/guide/topics/ui/controls/button