Android 개발 TextvView 투각 글꼴 효과 예시 코드 구현

Android 투각 글꼴 의 실현 효과 도,관심 있 는 분 들 은 구현 코드 를 참고 하 세 요.
효과 그림:

기록 해 봐...
사용자 정의 TextView

public class HollowTextView extends AppCompatTextView {
 private Paint mTextPaint, mBackgroundPaint;
 private Bitmap mBackgroundBitmap,mTextBitmap;
 private Canvas mBackgroundCanvas,mTextCanvas;
 private RectF mBackgroundRect;
 private int mBackgroundColor;
 private float mCornerRadius;
 
 public HollowTextView(Context context) {
  this(context,null);
 }
 
 public HollowTextView(Context context, AttributeSet attrs) {
  super(context, attrs);
  initAttrs(attrs,0);
  initPaint();
 }
 
 public HollowTextView(Context context, AttributeSet attrs, int defStyleAttr) {
  super(context, attrs, defStyleAttr);
  initAttrs(attrs,defStyleAttr);
  initPaint();
 }
 
 
 private void initAttrs(AttributeSet attrs,int defStyleAttr){
  if(attrs == null){
   return;
  }
  TypedArray typedArray = getContext().obtainStyledAttributes(attrs, R.styleable.HollowTextView, defStyleAttr, 0);
  mBackgroundColor = typedArray.getColor(R.styleable.HollowTextView_hollowTextView_background_color, Color.TRANSPARENT);
  mCornerRadius = typedArray.getDimension(R.styleable.HollowTextView_hollowTextView_corner_radius,0);
  typedArray.recycle();
 }
 
 /***
  *        
  */
 private void initPaint() {
  //    paint
  mTextPaint = new Paint();
  //       
  mTextPaint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.DST_OUT));
  mTextPaint.setAntiAlias(true);
  mBackgroundPaint = new Paint();
  mBackgroundPaint.setColor(mBackgroundColor);
  mBackgroundPaint.setAntiAlias(true);
 
 }
 
 @Override
 protected void onSizeChanged(int w, int h, int oldw, int oldh) {
  super.onSizeChanged(w, h, oldw, oldh);
  mBackgroundBitmap = Bitmap.createBitmap(w, h, Bitmap.Config.ARGB_4444);
  mBackgroundCanvas = new Canvas(mBackgroundBitmap);
  mTextBitmap = Bitmap.createBitmap(w,h,Bitmap.Config.ARGB_4444);
  mTextCanvas = new Canvas(mTextBitmap);
  mBackgroundRect = new RectF(0,0,getWidth(),getHeight());
 }
 
 @Override
 protected void onDraw(Canvas canvas) {
  //   super    mTextCanvas,            
  super.onDraw(mTextCanvas);
  drawBackground(mBackgroundCanvas);
  int sc;
  if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP ){
   sc = canvas.saveLayer(0,0,getMeasuredWidth(),getMeasuredHeight(),null);
  }else {
   sc = canvas.saveLayer(0,0,getMeasuredWidth(),getMeasuredHeight(),null,Canvas.ALL_SAVE_FLAG);
  }
  canvas.drawBitmap(mBackgroundBitmap,0,0,null);
  canvas.drawBitmap(mTextBitmap, 0, 0, mTextPaint);
  canvas.restoreToCount(sc);
 }
 
 private void drawBackground(Canvas canvas){
  if(mCornerRadius > 0){
   canvas.drawRoundRect(mBackgroundRect,mCornerRadius,mCornerRadius, mBackgroundPaint);
  }else {
   canvas.drawColor(mBackgroundColor);
  }
 }
attr.xml 파일

<declare-styleable name="HollowTextView">
   <attr name="hollowTextView_background_color" format="color|reference"/>
   <attr name="hollowTextView_corner_radius" format="dimension|reference"/>
 </declare-styleable>
xml 에서 사용

<com.cn.util.HollowTextView
   android:id="@+id/hollowtext"
   android:layout_width="60dp"
   android:layout_height="50dp"
   android:gravity="center"
   android:text="99+"
   android:textSize="30sp"
   android:textStyle="bold"
   app:hollowTextView_background_color="@color/white"
   app:hollowTextView_corner_radius="5dp"
   android:layout_centerInParent="true"/>
총결산
안 드 로 이 드 가 TextvView 를 개발 하여 투각 글꼴 효 과 를 실현 하 는 예제 코드 에 관 한 글 은 여기까지 소개 되 었 습 니 다.더 많은 안 드 로 이 드 투각 글꼴 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 조회 하 시기 바 랍 니 다.앞으로 많은 응원 부탁드립니다!

좋은 웹페이지 즐겨찾기