0

我需要摆脱旋转后产生的所有额外间距吗?似乎元素保持其原始宽度而不是使用它的原始高度作为新宽度。

欢迎提出建议。

在此处输入图像描述

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:rotation="90"
        android:text="Button" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />

</LinearLayout>
4

1 回答 1

0

当您将任何动画应用于组件时。

它表明您已经移动了该组件。

但实际上那个组件保留了它原来的位置

它不会从他原来的位置移动。

你可以说它的android限制。

但现在它在API 级别 3.0中解决了

你可以试试3.0或更高版本。

更多阅读这个

于 2012-09-29T09:13:16.660 回答