سلام عرض شد
شبتون بخیر

دوستان هر کاری که می کنم ، این صفحه برای من اجرا نمیشه و در نهایت در اندروید خطا میده که برنامه متوقف شد
4 تا خط برنامه ساده است
چکار کنم بنظرتون ؟

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/activity_main"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<EditText
android:id="@+id/input_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:hint="Name"
android:inputType="textPersonName" />

<EditText
android:id="@+id/input_phone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:hint="phone No."
android:inputType="phone" />

<CheckBox
android:text="share my phone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/cbSharePhone"
android:checked="true"
/>
<view
android:layout_width="match_parent"
android:layout_height="2dp"
android:background="@color/colorPrimary"
android:layout_marginTop="10dp"
/>

</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginTop="10dp">

<EditText
android:id="@+id/input_email"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:layout_marginRight="0dp"
android:hint="Email"
android:inputType="textWebEmailAddress" />

<view
android:layout_width="match_parent"
android:layout_height="2dp"
android:background="@color/colorPrimary"
android:layout_marginTop="10dp"
/>
<Button
android:id="@+id/btnSubmitFormInfo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Submit"
style="@style/Widget.AppCompat.Button.Colored" />
</LinearLayout>
</LinearLayout>