<TextView android:text="Happy Birthday!" android:background="@android:color/darker_gray" android:layout_width="150dp" android:layout_height="75dp" />
-weird angle brackets
-don’t know what “android:text” means
-says Happy Birthday which appears on phone
XML Syntax
<LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical"> <TextView android:text="Happy Birthday" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <TextView android:text="You're the best!" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout>
Attribute Name, Attribute value in “Quotations”
TextView has default values if you’re ok with default values, don’t set them here.