在我的android应用程序工具提示中,通过使用矢量路径创建,但它向下方向我想要相反的方向,即我需要在我的代码中更改哪个部分请帮助我。 这是我的代码
[![< ?xml version="1.0" encoding="utf-8"?>
< vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="44dp"
android:height="30dp"
android:viewportHeight="182"
android:viewportWidth="196">
< path
android:fillColor="#109af1"
android:pathData="M0 26.9917C0 12.0846 12.09433 0 26.99583 0L169.0042 0C183.9136 0 196 12.09104 196 26.9917L196 100.0083C196 114.9154 183.9057 127 169.0042 127L124 127L98.5 162L73 127L26.99583 127C12.08644 127 0 114.909 0 100.0083L0 26.9917" />
< /vector>][1]][1]
我想要这种风格
答案 0 :(得分:0)
试试这个
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<rotate
android:fromDegrees="180"
android:pivotX="50%"
android:pivotY="80%"
android:toDegrees="45">
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="44dp"
android:height="30dp"
android:viewportHeight="182"
android:viewportWidth="196">
<path
android:fillColor="#109af1"
android:pathData="M0 26.9917C0 12.0846 12.09433 0 26.99583 0L169.0042 0C183.9136 0 196 12.09104 196 26.9917L196 100.0083C196 114.9154 183.9057 127 169.0042 127L124 127L98.5 162L73 127L26.99583 127C12.08644 127 0 114.909 0 100.0083L0 26.9917" />
</vector>
</rotate>
</item>
</layer-list>
<强>输出强>