First step in Android Studio. Simple button function and string case convert.
Simple project utilizing editText, button, and textView.
Layout
- LinearLayout : aligns all children in a single direction, vertically or horizontally.
- (attribute)android:orientation
- (constant)vertical
- (constant)horizontal
- (attribute)android:orientation
- RelativeLayout : displays childviews in relative positions
- RecyclerView
- List View : displays a list of scrollable items
- Grid View : displays items in a two-dimensional, scrollable grid
ViewGroup.LayoutParams
- Attributes
- android:layout_height : Specifies the basic height of the view
- android:layout_width : Specifies the basic width of the view
- Constants
- fill_parent : The view should be as big as its parent. This is deprecated starting from API level 8 and is replaced by match_parent
- match_parent : The view should be as big as its parent
- wrap_content : The view should be only big enough to enclose its content
Setup: File -> Setting -> Version Control -> GitHub