仿京东商城系列2------自定义toolbar

本项目来自菜鸟窝,有兴趣者点击http://www.cniao5.com/course/

项目已经做完,源码地址。https://github.com/15829238397/CN5E-shop

仿京东商城系列0------项目简介
仿京东商城系列1------fragmentTabHost实现底部导航栏
仿京东商城系列2------自定义toolbar
仿京东商城系列3------封装Okhttp
仿京东商城系列4------轮播广告条
仿京东商城系列5------商品推荐栏
仿京东商城系列6------下拉刷新上拉加载的商品列表
仿京东商城系列7------商品分类页面
仿京东商城系列8------自定义的数量控制器
仿京东商城系列9------购物车数据存储器实现
仿京东商城系列10------添加购物车,管理购物车功能实现
仿京东商城系列11------商品排序功能以及布局切换实现(Tablayout)
仿京东商城系列12------商品详细信息展示(nativie与html交互)
仿京东商城系列13------商品分享(shareSDK)
仿京东商城系列14------用户登录以及app登录拦截
仿京东长城系列15------用户注册,SMSSDK集成
仿京东商城系列16------支付SDK集成
仿京东商城系列17------支付功能实现
仿京东商城系列18------xml文件读取(地址选择器)
仿京东商城系列19------九宫格订单展示
仿京东商城系列20------终章


前言

这篇文章,我们来介绍一个自定义toolbar(建造自己的轮子,才能跑得更快),废话少说。上效果

toolbar

内容

1.建立自己的toolbar,首先你需要一个布局。老规矩先上代码!

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolbar_view"
    android:background="@color/red">

    <!--定义一个TextView居中作为标题-->
    <TextView
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:layout_centerInParent="true"
        android:layout_centerHorizontal="true"
        android:layout_gravity="center_horizontal"
        android:gravity="center"
        android:textColor="@color/white"
        android:id="@+id/tb_title"
        android:text="测试数据"
        android:textSize="20sp"
        android:visibility="gone"
        android:layout_centerVertical="true"
        />

    <!--搜索框-->
    <EditText
        android:id="@+id/tb_Search_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:gravity="center"
        android:layout_marginRight="30dp"
        android:hint="请输入搜索的商品"
        android:textColorHint="@color/white"
        android:textColor="@color/white"
        android:drawableLeft="@android:drawable/ic_menu_search"
        android:visibility="gone"
        android:layout_centerVertical="true"
        />

    <!--编辑按钮-->
    <Button
        android:id="@+id/tb_right_button"
        android:layout_centerVertical="true"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_gravity="center"
        android:paddingRight="20dp"
        android:textSize="15sp"
        android:gravity="center_vertical|right"
        android:textColor="@color/white"
        android:text="编辑"
        android:background="?attr/colorPrimary"
        android:visibility="gone"
        />

    <!--右边图片按钮-->
    <ImageButton
        android:id="@+id/tb_right_imagebutton"
        android:layout_centerVertical="true"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_gravity="center"
        android:gravity="center_vertical|right"
        android:textColor="@color/white"
        android:background="?attr/colorPrimary"
        android:src="@drawable/icon_grid_32"
        android:paddingRight="10dp"
        android:visibility="gone"
        />

    <!--左边图片按钮-->
    <ImageButton
        android:id="@+id/tb_left_ImageButton"
        android:layout_marginLeft="5dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_gravity="center"
        android:paddingLeft="10dp"
        android:background="?attr/colorPrimary"
        android:layout_centerVertical="true"
        android:src="@drawable/icon_back_32px"
        android:visibility="gone"
        />

    <!--下面两个控件为头像框和用户名-->
    <ImageView
        android:paddingTop="20dp"
        android:paddingBottom="5dp"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_centerHorizontal="true"
        android:visibility="gone"
        android:id="@+id/tb_user_photo"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/tb_user_name"
        android:layout_centerHorizontal="false"
        android:layout_below="@+id/tb_user_photo"
        android:textColor="@color/white"
        android:gravity="center_horizontal|center_vertical"
        android:text="点击登录"
        android:visibility="gone"
        android:paddingBottom="10dp"/>

</RelativeLayout>

这里我采用了RelativeLayout布局,利用控件的android:visibility属性控制控件的显示和隐藏。以达到适应各种要求的目的.

2.建立自定义属性 代码代码:

在value文件夹下,新建attrs文件。添加如下代码。

 <declare-styleable name="CnToolbar">

        <attr name="rightButtonText" format="reference|string"/>
        <attr name="leftButtonIcon" format="reference"/>
        <attr name="rightImageButtonIcon" format="reference" />
        <attr name="userPhotoIcon" format="reference"/>
        <attr name="userName" format="reference|string"/>

        <attr name="isShowSearchView" format="boolean"/>

    </declare-styleable>

上述代码定义了一些自定义属性,这些属性将会在后续得到使用。

3.自定义控件的建立以及自定义属性的读取

public class CnToolbar extends Toolbar {

    private LayoutInflater inflater ;
    private View mView ;
    private TextView mTextTitle ;
    private Button mRightButton ;
    private ImageButton mLeftImageButton ;
    private EditText mSearchView ;
    private ImageButton mRightImageButton ;
    private ImageView userPhoto ;
    private TextView userName ;

    private TintTypedArray b ;

    public CnToolbar(Context context) {
        this(context , null);
    }

    public CnToolbar(Context context, @Nullable AttributeSet attrs) {
        this(context, attrs , 0);
    }

    public CnToolbar(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);

        b = TintTypedArray.obtainStyledAttributes(getContext(), attrs,
                R.styleable.CnToolbar, defStyleAttr, 0);
        initView() ;
        if(getIsShowSearchView()){
            showSearchView();
            return;
        }
        setRightButton(attrs, defStyleAttr) ;
        setLeftButton(attrs , defStyleAttr) ;
        setRightImageButton(attrs ,defStyleAttr );
        setUserName(attrs , defStyleAttr);
        setUserPhoto(attrs , defStyleAttr);
        b.recycle();
}

    //将mview布局加入toolBar中
    private void initView() {
        if (mView == null) {
            inflater = LayoutInflater.from(this.getContext());
            mView = inflater.inflate(R.layout.cntoolbar_view, null);

            mSearchView = (EditText) mView.findViewById(R.id.tb_Search_view);
            mTextTitle = (TextView) mView.findViewById(R.id.tb_title);
            mRightButton = (Button) mView.findViewById(R.id.tb_right_button);
            mLeftImageButton = (ImageButton) mView.findViewById(R.id.tb_left_ImageButton) ;
            mRightImageButton = (ImageButton) mView.findViewById(R.id.tb_right_imagebutton) ;
            userPhoto = (ImageView) mView.findViewById(R.id.tb_user_photo) ;
            userName = (TextView) mView.findViewById(R.id.tb_user_name) ;

            mSearchView.setSelected(false);
            mSearchView.setClickable(false);

            LayoutParams lp = new LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT, Gravity.CENTER_HORIZONTAL);
            this.addView(mView, lp);
        }

    }

    @Override
    public void setTitle(@StringRes int resId) {
        setTitle(getContext().getText(resId));
    }
    @Override
    public void setTitle(CharSequence title) {
        initView();
        if(title != null){
            if(mTextTitle == null){
                mTextTitle = (TextView) mView.findViewById(R.id.tab_title);
            }
            mTextTitle.setText(title);
            mTextTitle.setVisibility(VISIBLE);
            mTextTitle.setSelected(false);
            mTextTitle.setFocusable(false);
        }
    }

    private void setUserName(@Nullable AttributeSet attrs, int defStyleAttr){
        if(attrs != null){
            final String rightIcon = b.getString( R.styleable.CnToolbar_userName );
            if (rightIcon != null && rightIcon.length()>0) {
                setUserNameText(rightIcon);
            }
        }
    }

    public void setUserNameText(String s){
        userName.setText(s);
        userName.setVisibility(VISIBLE);
        userName.setEnabled(true);
    }

    private void setUserPhoto(@Nullable AttributeSet attrs, int defStyleAttr){
        if(attrs != null){
            final Drawable leftIcon = b.getDrawable(R.styleable.CnToolbar_userPhotoIcon);
            if (leftIcon != null) {
                setUserPhotoIcon(leftIcon);
            }
        }
    }

    public void setUserClickable(boolean enable){
        userPhoto.setClickable(enable);
    }

    private void setUserPhotoIcon(Drawable drawable) {
        if( drawable != null ){
            userPhoto.setImageDrawable(drawable);

            userPhoto.setVisibility(VISIBLE);
            userPhoto.setEnabled(true);
        }
    }

    @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
    public void setUserPhotoIcon(Context context , String resId , int defResId){
        if( resId != null && resId.length() > 0){

            Glide.with(context).load(resId).transform(new GlideCircleTransform(context)).into(this.userPhoto);
        }else {
            setUserPhotoIcon(context , defResId) ;
        }
        userPhoto.setVisibility(VISIBLE);
        userPhoto.setEnabled(true);
    }

    public void setUserPhotoIcon(Context context , int resId){
        Glide.with(context).load(resId).transform(new GlideCircleTransform(context)).into(this.userPhoto);
        userPhoto.setVisibility(VISIBLE);
        userPhoto.setEnabled(true);
    }

    public void setUserPhotoClickListener (OnClickListener listener) {
        userPhoto.setOnClickListener(listener);
    }


    public void setRightButton(@Nullable AttributeSet attrs, int defStyleAttr){
        if(attrs != null){
            final String rightIcon = b.getString( R.styleable.CnToolbar_rightButtonText );
            if (rightIcon != null && rightIcon.length()>0) {
                setRightButtonText(rightIcon);
            }
        }
    }

    public void setRightButtonText (String s) {
        Log.d("----" , "----------------s---------------" + s) ;
        mRightButton.setText(s);
        mRightButton.setVisibility(VISIBLE);
        mRightButton.setEnabled(true);
    }

    public void setRightButtonIcOnClickListener (OnClickListener listener) {
        mRightButton.setOnClickListener(listener);
    }

    public void setLeftButton(@Nullable AttributeSet attrs, int defStyleAttr){
        if(attrs != null){
            final Drawable leftIcon = b.getDrawable(R.styleable.CnToolbar_leftButtonIcon);
            if (leftIcon != null) {
                setLeftButtonIcon(leftIcon);
            }
        }
    }

    public void setLeftButtonIcon (Drawable drawable) {
        if( drawable != null ){
            mLeftImageButton.setImageDrawable(drawable);

            mLeftImageButton.setVisibility(VISIBLE);
            userPhoto.setVisibility(GONE);
            userName.setVisibility(GONE);
            mLeftImageButton.setEnabled(true);
        }
    }

    public void setLeftButtonIcOnClickListener (OnClickListener listener) {
        mLeftImageButton.setOnClickListener(listener);
    }



    public void setRightImageButton(@Nullable AttributeSet attrs, int defStyleAttr){
        if(attrs != null){
            final Drawable rightImage = b.getDrawable(R.styleable.CnToolbar_rightImageButtonIcon);
            if (rightImage != null) {
                setRightButtonIcon(rightImage);
            }
        }
    }

    @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
    public void setRightButtonIcon(int resId){
        this.setRightButtonIcon(getResources().getDrawable(resId , null));
    }

    public void setRightButtonIcon (Drawable drawable) {
        if( drawable != null ){
            mRightImageButton.setImageDrawable(drawable);

            mRightImageButton.setVisibility(VISIBLE);
            mRightImageButton.setEnabled(true);
        }
    }

    public void setRightImgeButtonIcOnClickListener (OnClickListener listener) {
        mRightImageButton.setOnClickListener(listener);
    }

    public boolean getIsShowSearchView(){
        final boolean isShowSearchView = b.getBoolean(R.styleable.CnToolbar_isShowSearchView , false) ;
        return  isShowSearchView ;
    }

    public void showSearchView(){
        mRightButton.setVisibility(GONE);
        mLeftImageButton.setVisibility(GONE);
        mTextTitle.setVisibility(GONE);
        mSearchView.setVisibility(VISIBLE);
    }

    public void notShowSearchView(){
        mRightButton.setVisibility(VISIBLE);
        mLeftImageButton.setVisibility(VISIBLE);
        mTextTitle.setVisibility(VISIBLE);
        mSearchView.setVisibility(GONE);
    }

    public void setSearchViewOnClicklistener( OnClickListener listener ){
        mSearchView.setOnClickListener(listener);
    }

}

代码有些长。大概操作分为以下几步:

  • 继承ToolBar类,重写构造方法。
  • 得到一个TintTypedArray 对象,通过b = TintTypedArray.obtainStyledAttributes(getContext(), attrs,
    R.styleable.CnToolbar, defStyleAttr, 0)获得。其中R.styleable.CnToolbar为你自定义的类型。使用完后通过b.recycle()进行回收。
  • 随后可以获得自定义的属性值,对之前自定义的view进行数据填充和设置,设置完毕后。使用 this.addView(mView, lp);
    将View添加入toolbar中。

使用自定义ToolBar

 <com.example.cne_shop.widget.CnToolbar
        android:id="@+id/toolBar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="?attr/actionBarSize"
        android:minWidth="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:title="分类"
        android:titleTextColor="@color/white"
        app:isShowSearchView="false"

        ></com.example.cne_shop.widget.CnToolbar>

注意,自定义属性要使用app:引用。

求助:

我在使用时,会遇到toolbar在不设置右按钮,不显示操作框时,显示长度会跟随下方text框的内容长度。求大神解答。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342

推荐阅读更多精彩内容