在安卓应用中常见应用图标,或者gridview ,listview每个条目上有新,火,等45度旋转的字体,然后一个红色背景,引起用户关注,来一下实现方式:

 

自定义一个textview,绘制字体的时候,旋转角度即可。代码如下:

package com.edaixi.view;

import android.content.Context;
import android.graphics.Canvas;
import android.util.AttributeSet;
import android.widget.TextView;

/**
 * Created by weichunsheng on 15/10/16.
 */
public class RotateTextView extends TextView {

    public RotateTextView(Context context) {
        super(context);
    }

    public RotateTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        //倾斜度45,上下左右居中
        canvas.rotate(45, getMeasuredWidth() / 3, getMeasuredHeight() / 3);
        super.onDraw(canvas);
    }
}

  

 

使用,在布局中:

    <com.edaixi.view.RotateTextView
        android:
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:layout_gravity="right|top"
        android:layout_alignParentRight="true"
        android:background="@drawable/home_rotate_bg"
        android:paddingBottom="5dp"
        android:paddingLeft="8dp"
        android:textColor="#fff"
        android:visibility="gone"
        android:textSize="8sp" />

  

相关文章:

  • 2022-12-23
  • 2021-06-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-31
猜你喜欢
  • 2022-12-23
  • 2021-12-06
  • 2021-08-12
  • 2022-12-23
  • 2021-12-29
  • 2022-12-23
  • 2021-12-09
相关资源
相似解决方案