第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定

Android 功能強(qiáng)大的TextView 從此愛不釋手

標(biāo)簽:
Android

SuperTextView

一个功能强大的TextView,可以满足日常大部分布局方式,开发者可已自行组合属性配置出属于自己风格的样式!

下载地址

基本使用

1.添加Gradle依赖

        dependencies { 
        ... 
        compile 'com.allen.supertextview:supertextview:1.0.1' 
        }

2.布局中如何使用

        <com.allen.supertextviewlibrary.SuperTextView 
                android:id="@+id/super_tv" 
                android:layout_width="match_parent" 
                android:layout_height="80dp" 
                stv:sLeftBottomTextColor2="@color/colorAccent" 
                stv:sLeftBottomTextString="招商银行(8888)" 
                stv:sLeftBottomTextString2="限额说明>>" 
                stv:sLeftIconRes="@drawable/bank_zhao_shang" 
                stv:sLeftTopTextString="银行卡支付" 
                stv:sRightCheckBoxRes="@drawable/circular_check_bg" 
                stv:sRightCheckBoxShow="true" 
                stv:sLineShow="bottom" 
                 /> 
        注意: 
                1、上下的线可以通过   sLineShow 设置  有四种显示方式 none,top,bottom,both 
                2、通过设置 sUseRipple=true 开启水波效果

3.代码中如何使用

       /** 
     * 可以通过链式设置大部分常用的属性值 
     */ 
        superTextView.setLeftIcon(drawable) 
                .setLeftString("") 
                .setLeftTVColor(0) 
                .setLeftTopString("") 
                .setLeftTopTVColor(0) 
                .setLeftBottomString("") 
                .setLeftBottomTVColor(0) 
                .setLeftBottomString2("") 
                .setLeftBottomTVColor2(0) 
                .setRightString("") 
                .setRightTVColor(0) 
                .setCbChecked(true) 
                .setCbBackground(drawable) 
                .setRightIcon(drawable) 
                .setRightString("") 
                .setRightTVColor(0) 
                .setLeftString("") 
                .setOnSuperTextViewClickListener(new SuperTextView.OnSuperTextViewClickListener() { 
                    @Override 
                    public void onSuperTextViewClick() { 
                        super.onSuperTextViewClick(); 
                        //do something 
                    }

                    @Override 
                    public void onLeftTopClick() { 
                        super.onLeftTopClick(); 
                        //do something 
                    }

                    @Override 
                    public void onLeftBottomClick() { 
                        super.onLeftBottomClick(); 
                        //do something 
                    }

                    @Override 
                    public void onLeftBottomClick2() { 
                        super.onLeftBottomClick2(); 
                        //do something 
                    } 
                });

4.点击事件(可根据需求选择实现某个点击事件)

        superTextView.setOnSuperTextViewClickListener(new SuperTextView.OnSuperTextViewClickListener() { 
                    @Override 
                    public void onSuperTextViewClick() { 
                        super.onSuperTextViewClick(); 
                        //do something 
                    }

                    @Override 
                    public void onLeftTopClick() { 
                        super.onLeftTopClick(); 
                        //do something 
                    }

                    @Override 
                    public void onLeftBottomClick() { 
                        super.onLeftBottomClick(); 
                        //do something 
                    }

                    @Override 
                    public void onLeftBottomClick2() { 
                        super.onLeftBottomClick2(); 
                        //do something 
                    } 
                });

5.属性说明(以下属性全部可以通过xml文件配置和代码进行设置)

        <declare-styleable name="SuperTextView"> 
        <attr name="sLeftIconRes" format="reference"/> 
        <attr name="sRightIconRes" format="reference"/> 
        <attr name="sRightCheckBoxRes" format="reference"/>

        <attr name="sLeftTextString" format="string"/> 
        <attr name="sCenterTextString" format="string"/> 
        <attr name="sRightTextString" format="string"/>

        <attr name="sLeftTopTextString" format="string"/> 
        <attr name="sLeftBottomTextString" format="string"/> 
        <attr name="sLeftBottomTextString2" format="string"/>

        <attr name="sTopLineMargin" format="dimension"/> 
        <attr name="sBottomLineMargin" format="dimension"/> 
        <attr name="sBothLineMargin" format="dimension"/>

        <attr name="sLeftIconMarginLeft" format="dimension"/> 
        <attr name="sLeftTextMarginLeft" format="dimension"/>

        <attr name="sLeftTopTextMarginLeft" format="dimension"/> 
        <attr name="sLeftBottomTextMarginLeft" format="dimension"/> 
        <attr name="sLeftBottomTextMarginLeft2" format="dimension"/>

        <attr name="sRightIconMarginRight" format="dimension"/> 
        <attr name="sRightTextMarginRight" format="dimension"/> 
        <attr name="sRightCheckBoxMarginRight" format="dimension"/> 
        <attr name="sRightCheckBoxShow" format="boolean"/> 
        <attr name="sIsChecked" format="boolean"/> 
        <attr name="sUseRipple" format="boolean"/>

        <attr name="sLeftTextSize" format="dimension"/> 
        <attr name="sLeftTopTextSize" format="dimension"/> 
        <attr name="sLeftBottomTextSize" format="dimension"/> 
        <attr name="sLeftBottomTextSize2" format="dimension"/> 
        <attr name="sRightTextSize" format="dimension"/> 
        <attr name="sCenterTextSize" format="dimension"/>

        <attr name="sBackgroundColor" format="color"/> 
        <attr name="sLeftTextColor" format="color"/> 
        <attr name="sLeftTopTextColor" format="color"/> 
        <attr name="sLeftBottomTextColor" format="color"/> 
        <attr name="sLeftBottomTextColor2" format="color"/> 
        <attr name="sRightTextColor" format="color"/> 
        <attr name="sCenterTextColor" format="color"/>

        <attr name="sLineShow" format="enum"> 
            <enum name="none" value="0"/> 
            <enum name="top" value="1"/> 
            <enum name="bottom" value="2"/> 
            <enum name="both" value="3"/> 
        </attr>

    </declare-styleable>

更新日志

V1.0.0

  • 功能强大的TextView

意见反馈

如果遇到问题或者好的建议,请反馈到我的邮箱:lygttpod@163.com 或者lygttpod@gmail.com

如果觉得对你有用的话,点一下右上的星星赞一下吧!

下载地址

License

         Copyright 2016 Allen

        Licensed under the Apache License, Version 2.0 (the "License"); 
        you may not use this file except in compliance with the License. 
        You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

        Unless required by applicable law or agreed to in writing, software 
        distributed under the License is distributed on an "AS IS" BASIS, 
        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
        See the License for the specific language governing permissions and 
   limitations under the License.斜体

原文链接:http://www.apkbus.com/blog-228214-62080.html

點(diǎn)擊查看更多內(nèi)容
TA 點(diǎn)贊

若覺得本文不錯(cuò),就分享一下吧!

評論

作者其他優(yōu)質(zhì)文章

正在加載中
  • 推薦
  • 評論
  • 收藏
  • 共同學(xué)習(xí),寫下你的評論
感謝您的支持,我會繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進(jìn)行掃碼打賞哦
今天注冊有機(jī)會得

100積分直接送

付費(fèi)專欄免費(fèi)學(xué)

大額優(yōu)惠券免費(fèi)領(lǐng)

立即參與 放棄機(jī)會
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號

舉報(bào)

0/150
提交
取消