LoginSignup
1
0

More than 5 years have passed since last update.

Android超基礎Layout編

Posted at

概要

  • AndroidのLayoutにかんするメモ
  • 超基本的なこと
  • Androidはじめたばかり

Layout

  • ConstraintLayout
  • GridLayout
  • FrameLayout
  • LinearLayout(horizontal/vertical)
  • RelativeLayout
  • TableLayout
レイアウト名 特徴
ConstraintLayout 自動的にレイアウトの位置をマテリアルデザインに沿った最適な位置に調整してくれる iOSのAutoLayoutの様な機能を持ったレイアウト
GridLayout 縦横に配置する。写真の一覧や電卓の数値配置に並べたい場合などに使用する
FrameLayout Viewを重ねて表示したい場合などに使用
LinearLayout
(horizontal/vertical)
縦(Vertical)/横(Horizontal)順番に並べて表示出来る
RelativeLayout View同士の位置関係から相対的に配置出来る ex) 画像の右(画像の横幅が変わっても)にテキストを表示とか
TableLayout htmlのtableタグと同じようにViewを配置出来る

ひとこと

超基礎からこつこつと

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0