android一个倾斜的TextView,适用于标签效果

描述:

android一个倾斜的TextView,适用于标签效果

应用截图:

640?wx_fmt=png&wxfrom=5&wx_lazy=1

使用说明:

<com.haozhang.lib.SlantedTextView
    android:layout_width="80dp"
    android:layout_height="80dp"
    android:gravity="center"
    app:slantedBackgroundColor="@color/secondary_text"
    app:slantedLength="40dp"
    app:slantedMode="left"
    app:slantedText="IOS"
    app:slantedTextColor="@color/primary"
    app:slantedTextSize="16sp"
    />


    SlantedTextView stv = (SlantedTextView) findViewById(R.id.test);
    stv.setText("PHP")
            .setTextColor(Color.WHITE)
            .setSlantedBackgroundColor(Color.BLACK)
            .setTextSize(18)
            .setSlantedLength(50)
            .setMode(SlantedTextView.MODE_LEFT);

  

源码下载:https://github.com/HeZaiJin/SlantedTextView

原文地址:https://www.cnblogs.com/ganchuanpu/p/6078727.html