Vin*_*ran 0 multilingual icons android
除了以编程方式之外,有没有办法根据语言更改后退按钮的方向?
我想要这个英文图标
我想要这个阿拉伯语
您可以通过 Vector Drawable 使用,
只需设置android:autoMirrored="true"它就会翻转图像
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="8dp"
android:height="18dp"
android:autoMirrored="true"
android:viewportHeight="15.0"
android:viewportWidth="9.0">
<path
android:fillColor="#00000000"
android:fillType="evenOdd"
android:pathData="M8,1l-7,6.5l7,6.5"
android:strokeColor="#6D6D6D"
android:strokeLineCap="round"
android:strokeLineJoin="round"
android:strokeWidth="2" />
Run Code Online (Sandbox Code Playgroud)