Android tooltip up word

Android tooltip up word

在我的 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]

我做了这个风格

我想要这个款式

试试这个

<?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>

输出