Android(開発)/レイアウト

Android(開発)/レイアウト

バージョンと製造年月日

2012-03-23

ズラズラ並べる

ズラズラ並べるにはLinearLayoutを使うLinearLayout | Android Developers

横にズラズラ並べる

横にズラズラ並べるにはandroid:orientation属性にhorizontalを指定する。

<LinearLayout
    ...
    android:orientation="horizontal" >
    <Hoge />
    <Hoge />
    <Hoge />
</LinearLayout>

内容要素が画面の幅を超えた場合はそのまま画面外に突き抜けていく。途中で勝手に折れたりしない。

縦にズラズラ並べる

縦にズラズラ並べるにはandroid:orientation属性にverticalを指定する。

<LinearLayout
    ...
    android:orientation="vertical" >
    <Hoge />
    <Hoge />
    <Hoge />
</LinearLayout>

タグ

android/dev/layout.txt · 最終更新: 2019-11-21 15:48 by ore