【乾貨】基於iconfont拓展的EasyTextView(高度自定義,豐富Api,支持左右設置Text,設置Shape,設置span等)

基於iconfont拓展的TextView(支持左右設置Text,設置Shape,設置span等)java

項目介紹

  • 還在苦於iconfont左右兩邊還須要設置文字只能加兩個TextView?
  • 還在苦於須要設置各類大同小異的邊框而new Shape文件嗎?
  • 還在苦於設置點擊效果而多種樣式嗎?
  • 還在苦於總用LinearLayout包一層?(代碼潔癖患者~)。

一個基於iconfont拓展的支持多種功能的輕量級TextView,減小布局嵌套,減小定義shape文件,基本涵蓋常規須要多個TextView實現的功能。android

支持的特性

  • 使用簡單
  • 鏈式調用
  • 支持給iconfont左右設置文字
  • 支持xml中直接設置經常使用shape的全部屬性
  • 支持分別設置iconfont,左文字,右文字的顏色(Selector也能夠)
  • 支持分別設置iconfont,左文字,右文字字號
  • 支持文字和iconfont居中
  • 支持左右文字設置多個span
  • 支持設置iconfont和左右文字的padding
  • 豐富的api,全部屬性都支持xml和java調用

源碼地址

EasyTextViewgit

歡迎提issues和PRgithub

Download

Step1

Add it in your root build.gradle at the end of repositories:api

allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}
複製代碼

Step2

Step 2. Add the dependencybash

dependencies {
		implementation 'com.github.DrownCoder:EasyTextView:v1.0'
	}
複製代碼

效果

只有想不到沒有作不到

使用

xml屬性

<com.study.xuan.library.widget.EasyTextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="&#xe627;"
            android:textColor="#494949"
            android:textSize="14dp"
            app:iconColor="@android:color/holo_red_light"
            app:strokeColor="@android:color/holo_red_light"
            app:strokeWidth="1dp"
            app:textPadding="5dp"
            app:textRight="關注"
            app:totalRadius="12dp" />
複製代碼
<declare-styleable name="EasyTextView">
        //Shape中的Type:RECTANGLE:0(默認),OVAL(1),LINE(2)
        <attr name="shapeType" format="integer" />
        //四個角的圓角
        <attr name="totalRadius"  format="dimension"/>
        //左上角
        <attr name="radiusTopLeft" format="dimension"/>
        //左下角
        <attr name="radiusBottomLeft" format="dimension"/>
        //右上角
        <attr name="radiusTopRight" format="dimension"/>
        //右下角
        <attr name="radiusBottomRight" format="dimension"/>
        //邊線的顏色
        <attr name="strokeColor"  format="color"/>
        //邊線的寬度
        <attr name="strokeWidth" format="dimension" />
        //填充的顏色
        <attr name="soildBac" format="color"/>
        //中間的iconfont距離左右Text的內邊距
        <attr name="textPadding" format="dimension"/>
        //左邊的文字
        <attr name="textLeft" format="string"/>
        //右邊的文字
        <attr name="textRight" format="string"/>
        //中間的iconfont的color(注意TextColor屬性會覆蓋)
        <attr name="iconColor" format="reference|color"/>
        //左邊文字的color(注意TextColor屬性會覆蓋)
        <attr name="textLeftColor" format="reference|color"/>
        //右邊文字的color(注意TextColor屬性會覆蓋)
        <attr name="textRightColor" format="reference|color"/>
        //左邊文字的大小(iconfont的大小用TextSize便可,不會覆蓋)
        <attr name="textLeftSize" format="dimension"/>
        //右邊文字的大小(iconfont的大小用TextSize便可,不會覆蓋)
        <attr name="textRightSize" format="dimension"/>
    </declare-styleable>
複製代碼

java Api

//少屬性能夠直接設置
etvGet.setTextRight(已關注);
//多屬性能夠鏈式調用,減小重複繪製,節省性能,注意最後build()
etvGet.strokeWidth(DensityUtils.dp2px(context, 1))
                    .strokeColor(Color.parseColor("#ffe849"))
                    .solid(Color.parseColor("#e8264a"))
                    .icon(context.getText(R.string.icon_font_check).toString())
                    .textRight("關注").build();
複製代碼
/**
  * 非鏈式調用api
  */
public void setType(int type);
public void setStrokeWidth(int value);
public void setStrokeColor(@ColorInt int color);
public void setSolid(int soild);
public void setIconColor(int color);
public void setTextLeft(CharSequence textLeft);
public void setTextRight(CharSequence textRight);
public void setTextLeftColor(int color);
public void setTextRightColor(int color);
public void setTextLeftSize(float leftSize);
public void setTextRightSize(float rightSize);
public void setIcon(String iconText);
public void clearSpan();
public void addSpanLeft(Object object, int start, int end, int flags);
public void addSpanLeft(List<Object> objects, int start, int end, int flags);
public void addSpanRight(List<Object> objects, int start, int end, int flags);
public void addSpanRight(Object object, int start, int end, int flags);
複製代碼

More

動態設置Shape,由SupperShape實現,能夠動態經過java代碼給任何View設置Shape,不須要再寫shape.xml文件,歡迎使用。 本項目僅基於TextView進行封裝,其餘View可按照需求進行封裝,原理比較簡單,你們能夠查看源碼。  
詳細使用說明參考Wikiapp

相關文章
相關標籤/搜索