のビューのグループにいくつかの制約を適用する必要がありますConstraintLayout
。これらのビューをグループ化し、Android Studio のレイアウト デザイナーがそれらを 1 つのビューとして扱う間、編集を続けたいと考えています。ViewGroup
ビューを(別のレイアウト)で実際にラップせずにそうする方法はありますか?そのようなラッパーが必要な場合は、付属のラッパーレイアウトがあり、のConstraintLayout
ような重いレイアウトを作成せずにオブジェクトをグループ化できますRelativeLayout
か?
4 に答える
ConstraintLayout チェーン
Android 開発者は最近、新しいバージョンの をリリースしましたConstraintLayout
(今日の時点で1.0.2 )。このバージョンには、新しい主要な機能であるチェーンが含まれています。これにより、ビューをグループ化できますConstraintLayout
。
チェーンは、単一の軸 (水平または垂直) でグループのような動作を提供します。
ウィジェットのセットは、双方向接続を介してリンクされている場合、チェーンと見なされます
チェーンが作成されると、次の 2 つの可能性があります。
- 利用可能なスペースに要素を広げる
- チェーンは「パック」することもできます。その場合、要素はグループ化されます
現在、この機能を使用するには、次の gradle 依存関係を使用する必要があります (アルファ版であるため)。
compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha9'
ここで、プロジェクトで使用するの最新バージョンを見つけることができConstraintLayout
ます。
Android Studio 2.3までは、双方向の制約をチェーンに追加できなかったため、Android Studio ユーザー インターフェース デザイナーはチェーンの作成をサポートしていませんでした。TranslucentCloudで言及されているように、解決策はこれらの制約を手動で XML で作成することでした。Android Studio 2.3 (現在はカナリア チャネルのみ) から、チェーンは UI エディターでもサポートされています (コメントでGoRoSが言及されているように)。
例
ConstraintLayout
以下は、とchainを使用して画面の中央に 2 つのビューを一緒に配置する方法の例です。
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
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">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="16dp"
android:layout_marginStart="16dp"
android:layout_marginTop="16dp"
android:text="TextView"
app:layout_constraintBottom_toTopOf="@+id/button"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.5"
app:layout_constraintVertical_chainPacked="true"/>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:layout_marginEnd="16dp"
android:layout_marginStart="16dp"
android:layout_marginTop="8dp"
android:text="Button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView"/>
</android.support.constraint.ConstraintLayout>
@Mateus Gondimによる更新(2018年1月)
最近のバージョンでは、app:layout_constraintVertical_chainStyle="packed"
代わりに使用する必要がありますapp:layout_constraintVertical_chainPacked="true"
使用できます
android.support.constraint.Guideline
要素をグループ化します。
ガイドライン (垂直または水平) を追加し、それを他のビューのアンカーとして使用します。以下は、グループ化された 2 つのテキストビューを水平方向にセンタリングする簡単な例です: (AS のデザイン ビューを表示)
<?xml version="1.0" encoding="utf-8"?>
<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="56dp"
android:background="@android:color/white"
android:paddingLeft="16dp"
android:paddingRight="16dp">
<TextView
android:id="@+id/top_text"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:background="@android:color/holo_red_light"
android:textSize="16sp"
app:layout_constraintBottom_toTopOf="@+id/guideline"
android:text="Above"
tools:text="Above" />
<android.support.constraint.Guideline
android:id="@+id/guideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_percent="0.5" />
<TextView
android:id="@+id/bottom_text"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:background="@android:color/holo_blue_bright"
android:textSize="16sp"
app:layout_constraintTop_toBottomOf="@+id/guideline"
android:text="Below"
tools:text="Below" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:text="Right vertically centered"
android:textSize="24sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:text="Right vertically centered"/>
</ConstraintLayout>
高さ0dpを使用して、ビューを垂直に編成できます。
相対レイアウトでは、上下のレイアウトを使用できます
<FrameLayout
android:id="@+id/frame_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/bottom_nav"
android:layout_below="@+id/toolbar"
/>
制約レイアウトでは、高さを指定することが必須であるため、高さを 0 にすることができます。そして、このような他のビューの下にビューを設定できます
<android.support.v4.view.ViewPager
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tablayout" />
constraintTop_toBottomOfおよびconstraintBottom_toTopOf プロパティを使用して、ビューを他のビューの上または下に調整できます。ありがとう