TIL: Guideline
⚫️ Period
2021-08-02(월)
~ 2021-08-08(일)
⚫️ Things I Learned
1️⃣ Guideline
Guidelineとは?
ConstraintLayout
のユーティリティクラスView.GONE
と表示され、デバイスには表示されませんConstraintLayout
でのみ作業xml
はファイルに直接作成できます.また、xml
Design
タブのPalette
をドラッグ&ドロップすることで使用できます.ガイドの場所の指定
Guideline
layout_constraintGuide_begin
layout_constraintGuide_end
使用マニュアルの例
<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">
<androidx.constraintlayout.widget.Guideline
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/guideline"
app:layout_constraintGuide_begin="100dp"
android:orientation="vertical"/>
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button"
app:layout_constraintLeft_toLeftOf="@+id/guideline"
android:layout_marginTop="16dp"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
https://developer.android.com/reference/androidx/constraintlayout/widget/Guideline
Reference
この問題について(TIL: Guideline), 我々は、より多くの情報をここで見つけました https://velog.io/@yxnsx/TIL-Guidelineテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol