Linear Layout
Linear Layout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_marginTop="90dp"
tools:ignore="MissingConstraints">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text=" Beginning "
android:textSize="40dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="70dp"
android:gravity="center"
android:padding="10dp"
android:backgroundTint="#E8B5F1D0"
android:background="@drawable/myset"
android:onClick="openBegginning_c"></TextView>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text=" Intermediate "
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:textSize="40dp"
android:layout_marginTop="80dp"
android:gravity="center"
android:padding="10dp"
android:backgroundTint="#E8B5F1D0"
android:background="@drawable/myset"
android:onClick="openIntermediate_c"></TextView>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text=" Advanced "
android:backgroundTint="#E8B5F1D0"
android:background="@drawable/myset"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:textSize="40dp"
android:layout_marginTop="80dp"
android:gravity="center"
android:padding="10dp"
android:onClick="openAdvanced_c"></TextView>
</LinearLayout>