AndroidStudio備忘録
レイアウト
xmlで表現されるやつ
Layouts
RelativeLayout
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000">
</RelativeLayout>
中の要素の位置関係を相対的に決めるレイアウト
- LinearLayout
- 縦か横1列に要素を整列させるレイアウト
- FrameLayout
- 要素を重ねて表示することのできるレイアウト
- ConstraintLayout
- 要素に制約を持たせて位置を決めることのできるレイアウト