Answers for "<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"

1

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
Posted by: Guest on July-19-2020

Code answers related to "<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 answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language