91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Androids使用TextvView實現鏤空字體效果

發布時間:2020-11-02 15:59:54 來源:億速云 閱讀:217 作者:Leah 欄目:開發技術

Androids使用TextvView實現鏤空字體效果?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

自定義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"/>

關于Androids使用TextvView實現鏤空字體效果問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

内丘县| 西丰县| 历史| 文成县| 逊克县| 青浦区| 且末县| 新沂市| 黄大仙区| 怀安县| 安丘市| 武川县| 安康市| 和平区| 杭锦旗| 正镶白旗| 呼伦贝尔市| 虞城县| 金秀| 赤水市| 邛崃市| 兴业县| 京山县| 康乐县| 苏尼特左旗| 景东| 重庆市| 普陀区| 开鲁县| 时尚| 铜梁县| 霞浦县| 泰州市| 墨竹工卡县| 长宁区| 进贤县| 荆门市| 北碚区| 望都县| 扎鲁特旗| 阳春市|