• Holds all the elements that appear to the user • Elements are instantiated at runtime • Some useful layouts: – Linear Layout – Relative Layout – Table Layout – GridView – ListView
types. • Bundles are generally used to hold the values received from a different activity. • Sample code: Bundle bundle = getIntent().getExtras(); String data = bundle.getString("key");
/> • Style is a bunch of properties that can change the look and feel of Android Views. • You can specify properties like height, width, margin, padding, color, background and many other properties. <TextView style="@style/MyDefaultText" android:text="@string/hello_world" />