タグ付けされた質問 「constraint-layout-chains」

9
制約レイアウトでオーバーラップ/負のマージンを達成するにはどうすればよいですか?
オーバーラップを達成するために制約レイアウトで負のマージンを達成することは可能ですか?レイアウトの中央に画像を配置し、aとx dpが重なるようなテキストビューを作成しようとしています。負のマージン値を設定しようとしましたが、うまくいきませんでした。これを達成する方法があれば素晴らしいです。

7
制約レイアウト垂直方向の中央揃え
制約レイアウトでオブジェクトを垂直方向に整列して中央に配置するにはどうすればよいですか?垂直方向または水平方向に位置合わせすることは可能ですが、2つのグリッド線の間にビューを制限する以外に、同時に中央に配置する方法が見つかりませんでした。 垂直方向の中央揃え: センタリングは、「centerInParent」、「centerVertical」、および「centerHorizo​​ntal」の相対レイアウトに戻らざるを得ない制約レイアウトの大きな問題のようです。 制約レイアウトを使用して、赤で囲まれたレイアウトを作成したいと思います。 残念ながら、2つのグリッド線を使用せずに見つけた唯一の方法は、ネストされた相対レイアウトと線形レイアウトを使用することです(これは、制約レイアウトがこの正確なシナリオを解決するはずでした!)。 相対レイアウトと線形レイアウトを使用したレイアウト: <RelativeLayout android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginTop="12dp" app:layout_constraintTop_toBottomOf="@id/user_points" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent"> <LinearLayout android:id="@+id/stat_1_layout" android:layout_width="60dp" android:layout_height="wrap_content" android:layout_marginLeft="12dp" android:layout_marginRight="12dp" android:layout_centerVertical="true" android:layout_toLeftOf="@+id/divider_1" android:orientation="vertical"> <TextView android:id="@+id/stat_1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" android:gravity="center_horizontal" android:text="10" android:textSize="16dp" android:textColor="@color/textSecondaryDark" android:maxLines="1"/> <TextView android:id="@+id/stat_detail_1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" android:gravity="center" android:text="Streak" android:textSize="8sp" android:textColor="@color/textSecondary" android:maxLines="1"/> </LinearLayout> <View android:id="@+id/divider_1" android:layout_width="1dp" android:layout_height="38dp" android:layout_toLeftOf="@+id/stat_2_layout" android:background="@drawable/linedivider"/> <LinearLayout …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.