Android의 ConstraintLayout에서 애플릿은 애플릿의 중심에 설정하려고 시도합니다

메서드


중앙에 있는 부품에 4개의 방향layout_constraint*_to*Of="中央にウィジェットを配置するウィジェットの ID"을 지정하여 실행중심.합니다.

견본


ImageView 중심에 Button가 표시됩니다.

코드


sample.xml
<?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">

    <android.support.v7.widget.AppCompatImageView
        android:id="@+id/imageView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@mipmap/bg_pattern2_aozora" />

    <android.support.v7.widget.AppCompatButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="中央"
        app:layout_constraintBottom_toBottomOf="@id/imageView"
        app:layout_constraintEnd_toEndOf="@id/imageView"
        app:layout_constraintStart_toStartOf="@id/imageView"
        app:layout_constraintTop_toTopOf="@id/imageView" />
</android.support.constraint.ConstraintLayout>

결실



관련 보도

  • https://qiita.com/84d010m08/items/9797205ee453345e2e8d
  • 좋은 웹페이지 즐겨찾기