如何在 Android 上将旋转的视图/按钮约束到 ConstraintLayout 的左侧?

问题描述 投票:0回答:2

在 Android 上,我想将一个简单的按钮旋转 90 度,并将其贴在 ConstraintLayout 的左侧。然而,当我尝试这样做时,屏幕左侧和按钮之间仍然存在很大的空间。它应该是这样的:

这是我的 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">

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:rotation="90"
        android:text="My example button"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

这是 Android Studio 的设计视图,它的实际外观如下:

这似乎是因为首先应用左侧/开始(以及顶部和底部)的约束,然后应用旋转。我尝试以编程方式解决这个问题,但在 Java 中没有成功:

Button button = view.findViewById(R.id.button);
button.setRotation(90); // already done, but doesn't matter

// constrain to left side after after rotation (doesn't help)
ConstraintSet constraintSet = new ConstraintSet();
constraintSet.clone((ConstraintLayout) view);
constraintSet.connect(button.getId(), ConstraintSet.START, ConstraintSet.PARENT_ID, ConstraintSet.START);
constraintSet.applyTo((ConstraintLayout) view);

// attempt to fix positioning with margins (doesn't move anything at all)
ViewGroup.MarginLayoutParams params = (ViewGroup.MarginLayoutParams) btnTest.getLayoutParams();
params.setMargins(-100, 0, 0, -100); // left, top, right, bottom
btnTest.setLayoutParams(params);

我还尝试更改 XML 布局文件中的边距,这同样完全没有效果。

有人知道如何达到我想要的结果吗?

感谢您的帮助!

java android xml android-layout rotation
2个回答
0
投票

试试这个:

        val button: Button = findViewById(R.id.button)
        button.pivotX = 125f
        button.rotation = 90f
        val params = button.layoutParams as ConstraintLayout.LayoutParams
        params.startToStart = ConstraintLayout.LayoutParams.PARENT_ID
        params.topToTop = ConstraintLayout.LayoutParams.PARENT_ID
        button.layoutParams = params

旋转前设置枢轴。枢轴点定义视图围绕其旋转的点。我是用 kotlin 写的。


0
投票

与你的说法相反,

margin
对我有用:

<button
      android:id="@+id/button"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginLeft="-65dp"
      android:rotation="90"
      android:text="My example button"
      app:layout_constraintBottom_toBottomOf="parent"
      app:layout_constraintStart_toStartOf="parent"
      app:layout_constraintTop_toTopOf="parent" />

如果您想以编程方式进行转换,以下解决方案也适合我(以像素为单位的参数):

button.setTranslationX(-195f);

第三种解决方案:请参阅评论中我的链接

© www.soinside.com 2019 - 2024. All rights reserved.