یک سری دکمه در اندروید موجود می باشد که باعث ارتباط بین کاربر و اپلیکیشن می شود و برای انواع مختلف
کارها به کار می رود مثلا فراخوانی یک عکس، ثبت سفارش، روشن کردن پروژکتور و ....
این ویو یکی از پرکاربردترین ویوها در اندروید به شمار می رود
Button انواع مختلفی دارد به عنوان مثال CompoundButton، RadioButton،ToggleButton را می توان نام برد
که در فصل های آینده بیشتر با این باتن ها آشنا خواهیم شد
نحوه اضافه کردن Button به پروژه
به کدهای زیر دقت کنید
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_width="match_parent" // عرض
android:layout_height="wrap_content" // ارتفاع
android:text="@string/yourtextbutton"
android:background="@drawable/myimagebackround button" //پشت زمینه باتن
android:id="@+id/button1" // آیدی باتن
style="@style/AlertDialog.AppCompat" // شکل ظاهری باتن
android:textColor="@color/colorAccent" // رنگ متن داخل باتن
android:layout_marginTop="50sp" //موقعیت قرارگیری از بالای صفحه
/>
</LinearLayout>