微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

自动镜像到ImageButton

如何解决自动镜像到ImageButton

我有一个应用,我希望它支持两种语言:英语和希伯来语。

当程序本地化为美国时,我会看到一个Imagebutton,其外观如下:

enter image description here

现在,当我换成希伯来语时,它看起来如下:

enter image description here

您可以看到Buttons改变了位置,但是箭头的方向被固定在错误的方向上。

我尝试在其上使用autoMirrored,但没有任何改变:

<ImageButton
    android:id="@+id/returnButton"
    style="?android:borderlessButtonStyle"
    android:layout_width="40dp"
    android:layout_height="wrap_content"
    android:layout_marginStart="18dp"
    android:layout_marginTop="20dp"
    android:autoMirrored="true"
    android:background="@color/fui_transparent"
    android:src="@drawable/ic_rarrow" />

ic_rarrow是根据SVG创建的xml

谢谢

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。