1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Android】LinearLayoutの使い方

Last updated at Posted at 2020-12-16

プログラミング勉強日記

2020年12月16日
LinearLayoutを始めて使ったので、LinearLayoutとは何か・使い方を簡単にまとめる。

LinearLayoutとは

 LinearLayout(読み方:「リニアレイアウト」)は、単純なレイアウトの1つで、子要素を縦・横の一列に並べるレイアウトである。android:orientation属性にvertical, horizontalを指定することでそれぞれ縦、横に並べることができる。

LinearLayoutを使って子要素を縦一列に並べる方法

 app/src/main/res/layout/activity_main.xmlでレイアウトエディタのデザインから配置することができる。

  1. パレット内にあるLayoutを選択
  2. LinearLayout(Vertical)を選択
  3. プレビュー画面にドラッグして配置する

image.png

4. 同様にして配置したいレイアウトをプレビュー画面にドラッグする

image.png

※この時点ではLinearLayoutにConstraintLayoutの制約がないためエラーが出ている。LinearLayoutに tools:ignore="MissingConstraints"を記述することでエラーを消した。(ConstraintLayoutの制約については昨日の記事で挙げている)
 

activity_main.xmlのコード
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <LinearLayout
        android:layout_width="409dp"
        android:layout_height="729dp"
        android:orientation="vertical"
        tools:layout_editor_absoluteX="1dp"
        tools:layout_editor_absoluteY="1dp"
        tools:ignore="MissingConstraints">

        <Button
            android:id="@+id/button4"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Button" />

        <Button
            android:id="@+id/button5"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Button" />

        <Button
            android:id="@+id/button6"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Button" />
    </LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

最終的なデザインの画面↓
image.png

要素を横に並べたい場合は、LinearLayout(Horizontal)にする。やることは縦に並べるときと同じ。

参考文献

縦または横一列に要素を並べるリニアレイアウト (LinearLayout)
Androidアプリ開発のLinearLayoutの使い方【初心者向け】

1
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?