gpt4 book ai didi

android - 从布局 xml 文件中旋转 ImageView 源

转载 作者:IT王子 更新时间:2023-10-28 23:57:46 26 4
gpt4 key购买 nike

我的布局中有这个 ImageView:

<ImageView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:contentDescription="@string/image_divider"
android:paddingBottom="8dp"
android:paddingTop="4dp"
android:scaleType="fitXY"
android:src="@android:drawable/divider_horizontal_textfield" />

这是一个水平分隔线。我想将它旋转 90 度,所以我有一个垂直分隔线。
有没有什么可能的方法可以从布局而不是 Activity 类中做到这一点?

最佳答案

您可以使用自 API 级别 11

起可用
android:rotation="90"

最终代码,

<ImageView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:rotation="90"
android:contentDescription="@string/image_divider"
android:paddingBottom="8dp"
android:paddingTop="4dp"
android:scaleType="fitXY"
android:src="@android:drawable/divider_horizontal_textfield" />

关于android - 从布局 xml 文件中旋转 ImageView 源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11243314/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com