Button
Last updated
Last updated
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="this is button text"
<!-- more attributes ... -->
/><Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="this is button text"
android:background="@color/colorAccent"
android:padding="5dp"
<!-- more attributes ... -->
/><Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="this is button text"
style="@style/Widget.AppCompat.Button.Borderless"
<!-- more attributes ... -->
/> Button button = findViewById(R.id.button_send); button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Do something in response to button click
}
}