''[[MobileApp>Mobile Application 入門]]'' > ''[[Android>Android]]'' > ''Layout''
''[[MobileApp>Mobile Application Guide]]'' > ''[[Android>Introduction to Android]]'' > ''Layout''


~
*レイアウトの概要 [#sb77194a]

  ViewとViewGroupの組み合わせで、アプリに配置する部品のレイアウト設定が可能
~

**ViewとViewGroup [#y454ce88]
  ・Viewの集まりをViewGroupという~
  ・ViewGroupは複数のViewを含む~
  ・ViewGroupの中にViewGroupを含むこともできる~
  ・レイアウトはViewGroupを継承している~
  ※具体的なイメージは以下の継承図を参照。
*Layout's Overview [#sb77194a]

   The UI of application can be set by the combination of View and ViewGroup. 

~
**ViewGroup を取り巻くクラス    [#b370a8dc]
   ViewGroupとその継承関係を以下に記述する

~
**View and ViewGroup [#y454ce88]
   ・The set of Veiw is ViewGroup. ~
   ・ViewGroup contains two or more View. ~
   ・ViewGroup can be contained in ViewGroup. ~
   ・The layout inherit ViewGroup. ~
   ※Refer to the following succession charts for the practical visualization. 

~
**ViewGroup surrounding Class    [#b370a8dc]
    "ViewGroup" and its succession relations are described as follows.

  &ref(ViewGroup.gif,nolink);

~
*レイアウトの種類 [#k84d3564]
*Kind of layout [#k84d3564]
~
   代表的なビューグループ(レイアウト)を以下に記述する
    Typical View-Groups (layouts) are described as follows. 

#style(class=table_left){{
|Ⅰ| absolute layout | 絶対座標指定の配置が可能 |
|Ⅱ| relative layout | 相対座標指定の配置が可能 |
|Ⅲ| Linear  layout | 縦/横 指定の配置が可能 |
|Ⅳ| Table   layout | 表形式の配置の配置が可能 |
|| 他色々 ||
|Ⅰ| Absolute layout | The layout placement which specifies the absolute coordinate. |
|Ⅱ| Relative layout | The layout placement which specifies the relative coordinate. |
|Ⅲ| Linear  layout | Horizontal direction and the vertical direction can be specified.  |
|Ⅳ| Table   layout | The table form can be arranged.  |
|Ⅴ| Frame   layout | Overlapping the VIEW is possible.  |
|| the others ||

~
**Ⅰ.Absolute layout [#ye06868a]
  ・部品の配置を 【絶対座標】 で指定するレイアウト。~
  ・SDK1.5から非推奨となった。(恐らく画面サイズの異なる複数のデバイスに対応できない為)
    ・Layout specified by using [absolute coordinate]~
    ・It became non-recommendation from SDK1.5. (Because this layout cannot support multiple devices for different screen sizes.)

~

  &ref(absolute.gif,nolink);  &ref(absolute2.gif,nolink);~
   &ref(absolute.gif,nolink);  &ref(absolute2.gif,nolink);~


~
***絶対座標の指定 [#kd3b4e95]
  layout_x ~
  layout_y ~
***XML attribute which absolute coordinate is specified in [#kd3b4e95]
   layout_x ~
   layout_y ~

~
***部品の幅・高さ指定 [#rbcc265f]
  layout_width~
  layout_height~
  fill_parentは最大サイズ。wrap_contentは最小サイズ
***XML attribute which width and height of parts are specified in[#rbcc265f]
   layout_width~
   layout_height~
   fill_parent is MAX size. wrap_content is minimum size.

~

~
**Ⅱ.Relative layout [#t95a1616]

  相対的な位置指定をするレイアウト。また,上端や下端にレイアウトするといった指定を行うことも可能~
    Layout  which specify the relative position of widget. Can be specified  placed in the top or bottom.~

~
  &ref(relative.gif,nolink);&ref(relative2.gif,nolink);~
   &ref(relative.gif,nolink);&ref(relative2.gif,nolink);~


「基準の位置を変更すれば、それに伴いほかのウィジェットも自動的に位置が調整できる」「斜めや円形にも配置が可能」というメリットがある一方、「気軽にウィジェットを追加・削除できない」という点や、「どのようにリレーションさせているかが自分でも分からなくなってしまう」という点がデメリット。
   「基準の位置を変更すれば、それに伴いほかのウィジェットも自動的に位置が調整できる」「斜めや円形にも配置が可能」というメリットがある一方、~
   「気軽にウィジェットを追加・削除できない」、「どのようにリレーションさせているか分からなくなってしまう」という点がデメリット。

~

~

**Ⅲ.Linear layout [#j52dd8c3]

  Liner Layoutは、縦向きまたは横向きに一直線にウィジェットを並べるレイアウト
    Liner Layout is the layout which arrange widgets at straight vertical or horizontal.

  &ref(liner.gif,nolink);       &ref(liner2.gif,nolink);~
   &ref(liner.gif,nolink);       &ref(liner2.gif,nolink);~


~

~

**Ⅳ.Table layout [#w8af4a08]
  表形式に並べるレイアウト
   This layout can arranged widget in a tabular.

  &ref(tablelayout2.png,nolink);    &ref(tablelayout.png,nolink);~
     Outline                    画面~
   &ref(tablelayout2.png,nolink);    &ref(tablelayout.png,nolink);~
       Outline                    Screen~
~

~

~

  ボタンのレイアウト~
  http://www.javadrive.jp/android/xml_layout/index7.html
~
**Ⅴ.Frame layout [#p1539b7e]

  画面の作り方~
  http://www.techfirm.co.jp/lab/android/view.html
    Frame layout is easy to use when stacking the View.~
    For example, when overlaying images is available.

~

  Android Developer~
  http://www.techdoctranslator.com/android/guide/ui/declaring-layout
 
  [[次世代創造機構>http://www.xn--rhq6sw9f0w7aevaf9ak89m.jp/android/androidLecture/GuiTutorial/GuiTutorial.html]]
   &ref(FrameLayout01.gif,nolink);    &ref(FrameLayout02.gif,nolink);~
         Outline                    Screen~
~

~
~
*Practical use [#x63c4c9f]

**Half-and-half [#ycf583ce]
   &ref(hanbun.png);
~
   If you want to set half-and-half to buttons layout ,~
   Use "LinearLayout",and assign 0 to "layout_width",and assign 1 to "weight".
~
~

*Viewのプロパティ [#tcf6cd7d]
  Example of layout.xml
    <LinearLayout 
        android:id="@+id/linearLayout1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
 
        <Button
            android:layout_width="0dip"
            android:layout_weight="1"
            android:text="before" 
            android:id="@+id/Button01"
            android:layout_height="wrap_content" >
        </Button>
 
        <Button 
            android:layout_width="0dip"
            android:layout_weight="1"
            android:text="next" 
            android:id="@+id/Button02" 
            android:layout_height="wrap_content" 
            android:layout_alignParentRight="true">
        </Button>
    </LinearLayout>

 [[参考 - Android Wiki>http://wikiwiki.jp/android/?UI%A5%B3%A5%F3%A5%DD%A1%BC%A5%CD%A5%F3%A5%C8%2FView]]

 ・nextFoxusDown - フォーカスが下方向に遷移した時の遷移先Viewを定義~
 ・padding - 上下左右のパディングを設定~
 ・scrollbarAlwaysDrawVerticalTrack - スクロールバーを表示するかどうか
~
~
~
~

*Property of View [#tcf6cd7d]

   [[参考 - Android Wiki>http://wikiwiki.jp/android/?UI%A5%B3%A5%F3%A5%DD%A1%BC%A5%CD%A5%F3%A5%C8%2FView]]

   ・nextFoxusDown - フォーカスが下方向に遷移した時の遷移先Viewを定義~
   ・padding - 上下左右のパディングを設定~
   ・scrollbarAlwaysDrawVerticalTrack - スクロールバーを表示するかどうか

~
**ViewGroupのプロパティ [#tcf6cd7d]
**Property of ViewGroup [#tcf6cd7d]

  [[参考 - Android Wiki>http://wikiwiki.jp/android/?UI%A5%B3%A5%F3%A5%DD%A1%BC%A5%CD%A5%F3%A5%C8%2FViewGroup]]
   [[参考 - Android Wiki>http://wikiwiki.jp/android/?UI%A5%B3%A5%F3%A5%DD%A1%BC%A5%CD%A5%F3%A5%C8%2FViewGroup]]

~

  
~

~  

~
**表現単位 [#ya5409d4]
**Units of represent  [#ya5409d4]

  レイアウト指定で利用可能な単位~
   Unit that can be used by layout~
#style(class=table_left){{
|px| ピクセル|
|dp| 密度非依存ピクセル|
|sp| 倍率非依存ピクセル|
|mm| ミリメータ|
|pt| ポイント数|
|in| インチ|
|px| pixels |
|dp| Density Independent Pixels |
|sp| Scale Independent Pixels |
|mm| millimeter |
|pt| Point |
|in| Inch |

~
*縦向きレイアウトと横向きレイアウト [#z4bb8c77]

 横向き画面には、"Layout-land"用フォルダを用意する。
~

~


~




*Portrait and landscape layout [#z4bb8c77]

   The Horizontal screen, Use "Layout-land" Folder.

#ref(layout-land.jpg,nolink);


~
//*その他 [#t9aed44b]
//リソースマネージャで各解像度毎のレイアウトを切り替えが出来 るよう
~
  ''[[Back>Introduction to Android]]''

  ''[[戻る>Android]]''


Front page   New List of pages Search Recent changes   Help   RSS of recent changes