Android 自定義 View-如何設(shè)置TextView drawable 圖片大小

項(xiàng)目中經(jīng)常需要設(shè)置 drawable 大小,但是可惜 textView 并不支持

手摸手,三分鐘動(dòng)手造輪子:

支持 任意 Drawable,不限于圖片, XML,layer,再也不怕產(chǎn)品的各種奇葩需求了

  1. 創(chuàng)建自定義的 View
public class DrawableTextView extends AppCompatTextView {
//設(shè)置方向
public static final int LEFT = 1, TOP = 2, RIGHT = 3, BOTTOM = 4;
  public DrawableTextView(Context context) {
    this(context, null);
  }

  public DrawableTextView(Context context, AttributeSet attrs){
    this(context, attrs, 0);
  }

  public DrawableTextView(Context context, AttributeSet attrs, 
    int defStyleAttr) {
    super(context, attrs, defStyleAttr);
    init(attrs);
  }
}
  1. attrs.xml設(shè)置自定義屬性:
<declare-styleable name="DrawableTextView">
    <attr name="drawable_src" format="reference"/>
    <attr name="drawable_height" format="dimension"/>
    <attr name="drawable_width" format="dimension"/>
    <attr name="drawable_location">
      <enum name="left" value="1"/>
      <enum name="top" value="2"/>
      <enum name="right" value="3"/>
      <enum name="bottom" value="4"/>
    </attr>
  </declare-styleable>
  1. 解析自定義屬性
  private void init(AttributeSet attrs) {
    if (attrs != null) {
      TypedArray a = getContext().obtainStyledAttributes(attrs,             R.styleable.DrawableTextView);
      int mWidth = a.getDimensionPixelSize
        (R.styleable.DrawableTextView_drawable_width, 0);
      int mHeight =a.getDimensionPixelSize
        (R.styleable.DrawableTextView_drawable_height,0);
      Drawable mDrawable =a.getDrawable
        (R.styleable.DrawableTextView_drawable_src);
      int mLocation = a.getInt
        (R.styleable.DrawableTextView_drawable_location, LEFT);
      a.recycle();
      drawDrawable(mDrawable, mWidth, mHeight, mLocation);
    }
  }
  1. 給 Drawable 設(shè)置好 參數(shù)

    /**
       * 繪制Drawable寬高,位置
       */
      public void drawDrawable(Drawable mDrawable, int mWidth,           int mHeight, int mLocation) {
        if (mDrawable != null) {
          if (mWidth != 0 && mHeight != 0) {
            mDrawable.setBounds(0, 0, mWidth, mHeight);
          }
          switch (mLocation) {
            case LEFT:
              this.setCompoundDrawables(mDrawable, null,
                  null, null);
              break;
            case TOP:
              this.setCompoundDrawables(null, mDrawable,
                  null, null);
              break;
            case RIGHT:
              this.setCompoundDrawables(null, null,
                  mDrawable, null);
              break;
            case BOTTOM:
              this.setCompoundDrawables(null, null, null,
                  mDrawable);
              break;
          }
        }
      }
    
  2. 最后,使用:

    <com.mrwang.gifstudio.View.DrawableTextView
        android:id="@+id/view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="hahahah"
        app:drawable_src="@drawable/count_down"
        android:drawablePadding="10dp"
        app:drawable_height="50dp"
        app:drawable_width="50dp"
        app:drawable_location="right"/>
    

    ?

  3. 貼上最終效果圖:

  1. 所有代碼:

    public class DrawableTextView extends AppCompatTextView {
    
      public static final int LEFT = 1, TOP = 2, RIGHT = 3, BOTTOM = 4;
    
      public DrawableTextView(Context context) {
        this(context, null);
      }
    
      public DrawableTextView(Context context, AttributeSet attrs) {
        this(context, attrs, 0);
      }
    
      public DrawableTextView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init(attrs);
      }
    
      private void init(AttributeSet attrs) {
        if (attrs != null) {
          TypedArray a = getContext().obtainStyledAttributes(attrs, R.styleable.DrawableTextView);
          int mWidth = a
              .getDimensionPixelSize(R.styleable.DrawableTextView_drawable_width, 0);
          int mHeight = a.getDimensionPixelSize(R.styleable.DrawableTextView_drawable_height,
              0);
          Drawable mDrawable = a.getDrawable(R.styleable.DrawableTextView_drawable_src);
          int mLocation = a.getInt(R.styleable.DrawableTextView_drawable_location, LEFT);
          a.recycle();
          drawDrawable(mDrawable, mWidth, mHeight, mLocation);
        }
      }
    
      /**
       * 繪制Drawable寬高,位置
       */
      public void drawDrawable(Drawable mDrawable, int mWidth, int mHeight, int mLocation) {
        if (mDrawable != null) {
          if (mWidth != 0 && mHeight != 0) {
            mDrawable.setBounds(0, 0, mWidth, mHeight);
          }
          switch (mLocation) {
            case LEFT:
              this.setCompoundDrawables(mDrawable, null,
                  null, null);
              break;
            case TOP:
              this.setCompoundDrawables(null, mDrawable,
                  null, null);
              break;
            case RIGHT:
              this.setCompoundDrawables(null, null,
                  mDrawable, null);
              break;
            case BOTTOM:
              this.setCompoundDrawables(null, null, null,
                  mDrawable);
              break;
          }
        }
      }
    }
    

    ?參考:
    | http://blog.csdn.net/u014702653/article/details/52304656

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末谋梭,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子剔氏,更是在濱河造成了極大的恐慌颅和,老刑警劉巖鹃愤,帶你破解...
    沈念sama閱讀 211,884評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡浅缸,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,347評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門魄咕,熙熙樓的掌柜王于貴愁眉苦臉地迎上來衩椒,“玉大人,你說我怎么就攤上這事哮兰∶龋” “怎么了?”我有些...
    開封第一講書人閱讀 157,435評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵喝滞,是天一觀的道長阁将。 經(jīng)常有香客問我,道長右遭,這世上最難降的妖魔是什么冀痕? 我笑而不...
    開封第一講書人閱讀 56,509評(píng)論 1 284
  • 正文 為了忘掉前任荔睹,我火速辦了婚禮,結(jié)果婚禮上言蛇,老公的妹妹穿的比我還像新娘僻他。我一直安慰自己,他們只是感情好腊尚,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,611評(píng)論 6 386
  • 文/花漫 我一把揭開白布吨拗。 她就那樣靜靜地躺著,像睡著了一般婿斥。 火紅的嫁衣襯著肌膚如雪劝篷。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,837評(píng)論 1 290
  • 那天民宿,我揣著相機(jī)與錄音娇妓,去河邊找鬼。 笑死活鹰,一個(gè)胖子當(dāng)著我的面吹牛哈恰,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播志群,決...
    沈念sama閱讀 38,987評(píng)論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼着绷,長吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了锌云?” 一聲冷哼從身側(cè)響起荠医,我...
    開封第一講書人閱讀 37,730評(píng)論 0 267
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎桑涎,沒想到半個(gè)月后彬向,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,194評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡攻冷,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,525評(píng)論 2 327
  • 正文 我和宋清朗相戀三年幢泼,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片讲衫。...
    茶點(diǎn)故事閱讀 38,664評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡缕棵,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出涉兽,到底是詐尸還是另有隱情招驴,我是刑警寧澤,帶...
    沈念sama閱讀 34,334評(píng)論 4 330
  • 正文 年R本政府宣布枷畏,位于F島的核電站别厘,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏拥诡。R本人自食惡果不足惜触趴,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,944評(píng)論 3 313
  • 文/蒙蒙 一氮发、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧冗懦,春花似錦爽冕、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,764評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至没讲,卻和暖如春眯娱,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背爬凑。 一陣腳步聲響...
    開封第一講書人閱讀 31,997評(píng)論 1 266
  • 我被黑心中介騙來泰國打工徙缴, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人嘁信。 一個(gè)月前我還...
    沈念sama閱讀 46,389評(píng)論 2 360
  • 正文 我出身青樓于样,卻偏偏與公主長得像,于是被迫代替她去往敵國和親吱抚。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,554評(píng)論 2 349

推薦閱讀更多精彩內(nèi)容