美文网首页
正确的实现自定义组件

正确的实现自定义组件

作者: 城平京 | 来源:发表于2019-05-17 14:50 被阅读0次

在开发一款App中,我们一定要注意对组件的复用,小到一个Button,大到一个RecyclerView中的Section都是可以复用的。
总之一句话,能复用的尽量复用,这样才能在哪天设计师突然要改变整个App的设计风格的时候不至于措手不及。

下面介绍一种最最常见实现自定义组件的方式,也是我个人使用的最多的。

1 先看布局

<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">

    <TextView
        android:id="@+id/button_tv"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_marginLeft="4dp"
        android:clickable="false"
        android:duplicateParentState="true"
        android:gravity="center"
        android:lineSpacingExtra="4sp"
        android:textSize="@dimen/text_size_12" />

</merge>

一定要用Merge,为什么?减少Layout嵌套,如果有Code Review的公司建议把这一项检查加进去
举个例子,假如Merge改成FrameLayout,那么布局效果就会变成这样

<FrameLayout>
   <FrameLayout>
      <TextView />
   </FrameLayout>
</FrameLayout>

如果使用Merge,那么布局效果就是这样

<FrameLayout>
   <TextView />
</FrameLayout>

2 不要用Include,为啥?Include不能传自定义参数。
所以应该怎么做?看代码

public class IWBaseButton extends LinearLayout {

    private ImageView buttonLeftImage;
    private TextView buttonText;
    private Context mContext;
    private int textResId;
    private int leftImageResId;
    private @ColorInt
    int textColor;
    private @ColorInt
    int buttonStrokeColor;
    private @ColorInt
    int buttonSolidColor;

    public IWBaseButton(Context context, AttributeSet attrs) {
        super(context, attrs);
        this.mContext = context;
        initAttrs(attrs);
        initView();
    }

    private void initAttrs(AttributeSet attrs) {
        TypedArray a = mContext.obtainStyledAttributes(attrs, R.styleable.BaseButton);
        this.textResId = a.getResourceId(R.styleable.BaseButton_button_text, 0);
        this.leftImageResId = a.getResourceId(R.styleable.BaseButton_button_left_image, 0);
        // default text color is white, stroke color is white, solid color is transparent
        this.textColor = a.getColor(R.styleable.BaseButton_button_text_color, getResources().getColor(R.color.white));
        this.buttonStrokeColor = a.getColor(R.styleable.BaseButton_button_stroke_color, getResources().getColor(R.color.white));
        this.buttonSolidColor = a.getColor(R.styleable.BaseButton_button_solid_color, getResources().getColor(R.color.transparent));
        a.recycle();
    }

    private void initView() {
        inflate(mContext, R.layout.layout_base_button, this);
        buttonLeftImage = findViewById(R.id.button_left_iv);
        buttonText = findViewById(R.id.button_tv);
        if (textResId != 0) {
            setText(mContext.getString(textResId));
        }
        if (leftImageResId != 0) {
            setLeftImage(leftImageResId);
        } else {
            buttonLeftImage.setVisibility(GONE);
        }
        setTextColor(textColor);
        setGravity(Gravity.CENTER);
    }
}

这段代码是我用来复用项目中Button的,效果如下


5634671C-8879-440C-8489-7B2462369B7A.png

因为继承了LinearLayout,所以最终的布局层级如下

<LinearLayout>
   <ImageView />
   <TextView />
</LinearLayout>

三 注意事项

 inflate(mContext, R.layout.layout_base_button, this);

解析布局,this表示把这个布局加到LinearLayout中去,不需要再显示的调用addView方法了。

自定义属性在attrs.xml文件中添加即可

    <declare-styleable name="BaseButton">
        <attr name="button_text" format="reference" />
        <attr name="button_text_color" format="color|integer" />
        <attr name="button_stroke_color" format="color|integer" />
        <attr name="button_solid_color" format="color|integer" />
        <attr name="button_left_image" format="reference" />
    </declare-styleable>

如果还需要添加style,可以参考
如何更好的通过Inflate layout的方式来实现自定义view

参考资料:
The beauty of Custom Views in Android and How to do it!
Protip. Inflating layout for your custom view
如何更好的通过Inflate layout的方式来实现自定义view

相关文章

  • 正确的实现自定义组件

    在开发一款App中,我们一定要注意对组件的复用,小到一个Button,大到一个RecyclerView中的Sect...

  • Elementui el-input 实现自定义 v-model

    Vue 本身支持自定义组件实现 v-model ,但 el-input 作为 Elementui 的自定义组件也已...

  • 百度小程序的一些坑

    1、自定义组件名不能用驼峰命名正确: 错误: 2、自定义组件内不支持iconfont,编译时将/去掉了 官方回复...

  • 基于elementUI自定义时间组件

    实现如下可以自定义时间选项的时间组件。

  • 复选框组件封装

    目的:实现一个自定义复选框组件。 大致步骤: 实现组件本身的选中与不选中效果 实现组件的v-model指令 改造成...

  • 微信小程序自定义组件

    步骤 创建自定义组件 在页面中使用组件 页面和组件之间的传值 项目结构及实现后效果 1、 新建自定义compone...

  • 封装tree-基础实现

    实现功能 Tree 组件使用 扁平数据树状化 自定义组件结构 实现效果 实现过程 拼装数据 title下包含chi...

  • vue的组件通信

    1.父组件向子组件传值 父传子的实现方式:在子组件上使用自定义属性绑定数据,用props声明自定义属性(父组件通过...

  • vue使用v-model实现父子组件间通信

    前言 vue父子组件之间的通信方式: 父组件到子组件:通过props传递数据; 子组件到父组件:通过自定义事件实现...

  • 自定义组件

    手把手教你实现小程序中的自定义组件

网友评论

      本文标题:正确的实现自定义组件

      本文链接:https://www.haomeiwen.com/subject/sgxoaqtx.html