自定義控件之創(chuàng)建復(fù)合控件

方式:繼承一個合適的ViewGroup悲酷,再添加指定功能的控件粟关,需要拓展一些可以配置的屬性疮胖,以達到更好的重用功能。

以一個自定義標題欄為例闷板。
具體功能:標題欄分為三個部分澎灸,左按鈕、右按鈕蛔垢、標題击孩,按鈕可以設(shè)置文字迫悠、文字顏色鹏漆、背景,并且可以隱藏创泄;標題可以設(shè)置文字艺玲、文字顏色、文字大小鞠抑、背景饭聚。

步驟:

1.定義標題欄的屬性,如標題顏色搁拙、大小等等秒梳,需要在res/values目錄下創(chuàng)建一個attrs.xml文件,并通過如下代碼定義相應(yīng)的屬性箕速。

<resources>
    <declare-styleable name="topBar">
        <attr name="titleText" format="string"/>
        <attr name="titleTextSize" format="dimension"/>
        <attr name="titleTextColor" format="color"/>
        <attr name="titleBackground" format="color"/>
        <attr name="leftText" format="string"/>
        <attr name="leftTextColor" format="color"/>
        <attr name="leftBackground" format="reference|color"/>
        <attr name="rightText" format="string"/>
        <attr name="rightTextColor" format="color"/>
        <attr name="rightBackground" format="reference|color"/>
    </declare-styleable>
</resources>

2.創(chuàng)建標題欄類TopBar酪碘,并繼承一個ViewGroup,這里選擇RelativeLayout盐茎。我們需要在其構(gòu)造方法中獲取自定義屬性集兴垦,即attrs.xml里面定義的屬性,這里用到了TypedArray字柠,通過它的getString()探越、getColor()等方法獲取屬性值。

public class TopBar extends RelativeLayout{

    private String mLeftText;
    private int mLeftTextColor;
    private Drawable mLeftBackground;

    private String mRightText;
    private int mRightTextColor;
    private Drawable mRightBackground;

    private String mTitleText;
    private int mTitleTextColor;
    private float mTitleTextSize;
    private Drawable mTitleBackground;

    private Button mLeftButton;
    private Button mRightButton;
    private TextView mTitleView;

    private LayoutParams mLeftParams;
    private LayoutParams mRightParams;
    private LayoutParams mTitleParams;

    private TopBarClickListener mListener;


    public TopBar(Context context, AttributeSet attrs) {
        super(context, attrs);
        //存儲自定義的屬性集
        TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.topBar);

        //取出TypedArray中的值
        mLeftText = ta.getString(R.styleable.topBar_leftText);
        mLeftTextColor = ta.getColor(R.styleable.topBar_leftTextColor, 0);
        mLeftBackground = ta.getDrawable(R.styleable.topBar_leftBackground);

        mRightText = ta.getString(R.styleable.topBar_rightText);
        mRightTextColor = ta.getColor(R.styleable.topBar_rightTextColor, 0);
        mRightBackground = ta.getDrawable(R.styleable.topBar_rightBackground);

        mTitleText = ta.getString(R.styleable.topBar_titleText);
        mTitleTextColor = ta.getColor(R.styleable.topBar_titleTextColor, 0);
        mTitleTextSize = ta.getDimension(R.styleable.topBar_titleTextSize, 10);
        mTitleBackground = ta.getDrawable(R.styleable.topBar_titleBackground);

        //回收資源
        ta.recycle();

        //為控件的屬性賦值
        init(context);
    }

    private void init(Context context){

        mLeftButton = new Button(context);
        mRightButton = new Button(context);
        mTitleView = new TextView(context);

        mLeftButton.setText(mLeftText);
        mLeftButton.setTextColor(mLeftTextColor);
        mLeftButton.setBackground(mLeftBackground);

        mRightButton.setText(mRightText);
        mRightButton.setTextColor(mRightTextColor);
        mRightButton.setBackground(mRightBackground);

        mTitleView.setText(mTitleText);
        mTitleView.setTextColor(mTitleTextColor);
        mTitleView.setTextSize(mTitleTextSize);
        mTitleView.setBackground(mTitleBackground);
        mTitleView.setGravity(Gravity.CENTER);

        mLeftParams = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.MATCH_PARENT);
        mLeftParams.addRule(RelativeLayout.ALIGN_PARENT_LEFT, TRUE);
        addView(mLeftButton, mLeftParams);

        mRightParams = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.MATCH_PARENT);
        mRightParams.addRule(RelativeLayout.ALIGN_PARENT_RIGHT, TRUE);
        addView(mRightButton, mRightParams);

        mTitleParams = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
        mTitleParams.addRule(RelativeLayout.CENTER_IN_PARENT, TRUE);
        addView(mTitleView, mTitleParams);

        mLeftButton.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                mListener.leftClick();
            }
        });
        mRightButton.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                mListener.rightClick();
            }
        });
    }

    /**
    * 注冊接口回調(diào)
    * @param listener 
    */
    public void setOnTopBarClickListener(TopBarClickListener listener){
        mListener = listener;
    }

    /**
    * 左右按鈕點擊事件的接口窑业,發(fā)生點擊事件時回調(diào)方法
    */
    public interface TopBarClickListener{
        void leftClick();
        void rightClick();
    }

    /**
    * 控制按鈕是否顯示
    * @param id 0:左钦幔,1:右
    * @param flag true:顯示 false:隱藏
    */
    public void setButtonDisplay(int id, boolean flag){
        if (flag){
            if (id == 0){
                mLeftButton.setVisibility(View.VISIBLE);
            }else{
                mRightButton.setVisibility(View.VISIBLE);
            }
        }else{
            if (id == 0){
                mLeftButton.setVisibility(View.GONE);
            }else{
                mRightButton.setVisibility(View.GONE);
            }
        }
    }
}

3.引用自定義標題欄:需要指定第三方也就是我們自定義的命名空間,我定義的是 xmlns:topBar="http://schemas.android.com/apk/res-auto" 常柄,當然节槐,這里的topBar你可以替換成任意你想定義的名字搀庶,比如one、two铜异、three都應(yīng)該沒什么問題哥倔。

<priv.ky2.viewdemo.widget.TopBar
        xmlns:topBar="http://schemas.android.com/apk/res-auto"
        android:id="@+id/topBar"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="@color/light_black"
        topBar:leftText="Left"
        topBar:leftTextColor="@color/white"
        topBar:rightText="Right"
        topBar:rightTextColor="@color/white"
        topBar:titleText="Title"
        topBar:titleTextSize="10sp"
        topBar:titleTextColor="@color/white"/>

注:左右按鈕點擊接口回調(diào)

mTopBar = (TopBar) findViewById(R.id.topBar);
mTopBar.setOnTopBarClickListener(new TopBar.TopBarClickListener() {
    @Override
    public void leftClick() {
            
    }

    @Override
    public void rightClick() {
            
    }
});
效果
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市揍庄,隨后出現(xiàn)的幾起案子咆蒿,更是在濱河造成了極大的恐慌,老刑警劉巖蚂子,帶你破解...
    沈念sama閱讀 211,042評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件沃测,死亡現(xiàn)場離奇詭異,居然都是意外死亡食茎,警方通過查閱死者的電腦和手機蒂破,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,996評論 2 384
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來别渔,“玉大人附迷,你說我怎么就攤上這事“ッ模” “怎么了喇伯?”我有些...
    開封第一講書人閱讀 156,674評論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長拨与。 經(jīng)常有香客問我稻据,道長,這世上最難降的妖魔是什么买喧? 我笑而不...
    開封第一講書人閱讀 56,340評論 1 283
  • 正文 為了忘掉前任捻悯,我火速辦了婚禮,結(jié)果婚禮上淤毛,老公的妹妹穿的比我還像新娘今缚。我一直安慰自己,他們只是感情好钱床,可當我...
    茶點故事閱讀 65,404評論 5 384
  • 文/花漫 我一把揭開白布荚斯。 她就那樣靜靜地躺著,像睡著了一般查牌。 火紅的嫁衣襯著肌膚如雪事期。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,749評論 1 289
  • 那天纸颜,我揣著相機與錄音兽泣,去河邊找鬼。 笑死胁孙,一個胖子當著我的面吹牛唠倦,可吹牛的內(nèi)容都是我干的称鳞。 我是一名探鬼主播,決...
    沈念sama閱讀 38,902評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼稠鼻,長吁一口氣:“原來是場噩夢啊……” “哼冈止!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起候齿,我...
    開封第一講書人閱讀 37,662評論 0 266
  • 序言:老撾萬榮一對情侶失蹤熙暴,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后慌盯,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體周霉,經(jīng)...
    沈念sama閱讀 44,110評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年亚皂,在試婚紗的時候發(fā)現(xiàn)自己被綠了俱箱。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,577評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡灭必,死狀恐怖狞谱,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情厂财,我是刑警寧澤芋簿,帶...
    沈念sama閱讀 34,258評論 4 328
  • 正文 年R本政府宣布峡懈,位于F島的核電站璃饱,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏肪康。R本人自食惡果不足惜荚恶,卻給世界環(huán)境...
    茶點故事閱讀 39,848評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望磷支。 院中可真熱鬧谒撼,春花似錦、人聲如沸雾狈。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,726評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽善榛。三九已至辩蛋,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間移盆,已是汗流浹背悼院。 一陣腳步聲響...
    開封第一講書人閱讀 31,952評論 1 264
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留咒循,地道東北人据途。 一個月前我還...
    沈念sama閱讀 46,271評論 2 360
  • 正文 我出身青樓绞愚,卻偏偏與公主長得像,于是被迫代替她去往敵國和親颖医。 傳聞我的和親對象是個殘疾皇子位衩,可洞房花燭夜當晚...
    茶點故事閱讀 43,452評論 2 348

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