Practical No 11
<?xml version=”1.0” encoding=”utf-8”?>
<LinearLayout xmlns:android=http://schemas.android.com/apk/res/android
Xmlns:tools=http://schemas.android.com/tools
Android:layout_width=”match_parent”
Android:layout_height=”match_parent”
Android:orientation=”vertical”
Android:padding=”16dp”
Tools:context=”.InterestsActivity”>
<TextView
Android:layout_width=”wrap_content”
Android:layout_height=”wrap_content”
Android:text=”Select you interests:”
Android:textSize=”18sp”
Android:layout_marginBottom=”16dp”/>
<CheckBox
Android:id=”@+id/checkBoxBeauty”
Android:layout_width=”wrap_content”
Android:layout_height=”wrap_content”
Android:text=”Beauty & Style”
Android:layout_marginBottom=”8dp”/>
<CheckBox
Android:id=”@+id/checkBoxHealth”
Android:layout_width=”wrap_content”
Android:layout_height=”wrap_content”
Android:text=”Health & Fitness”
Android:layout_marginBottom=”8dp”/>
<CheckBox
Android:id=”@+id/checkBoxMusic”
Android:layout_width=”wrap_content”
Android:layout_height=”wrap_content”
Android:text=”Music”
Android:layout_marginBottom=”8dp”/>
<CheckBox
Android:id=”@+id/checkBoxShopping”
Android:layout_width=”wrap_content”
Android:layout_height=”wrap_content”
Android:text=”Shopping”
Android:layout_marginBottom=”8dp”/>
<CheckBox
Android:id=”@+id/checkBoxTechnology”
Android:layout_width=”wrap_content”
Android:layout_height=”wrap_content”
Android:text=”Technology”
Android:layout_marginBottom=”24dp”/>
<Button
Android:id=”@+id/buttonSubmit”
Android:layout_width=”match_parent”
Android:layout_height=”wrap_content”
Android:text=”Submit”/>
</LinearLayout>