Android dataBinding简单的封装

一、简介

本文是databinding使用的简单封装,主要是在基类BaseActivity和BaseFragment中

二、具体步骤

1.在build.gradle中开启databinding

dataBinding { enabled = true }

2.在BaseActivity的封装,主要是通过反射的方式获取。如下

package com.zw.databindingdemo.java;

import android.os.Bundle;
import android.view.LayoutInflater;

import androidx.annotation.Nullable;
import androidx.appcompat.app.AppCompatActivity;
import androidx.databinding.ViewDataBinding;

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.ParameterizedType;

/**
 * 描述:
 * @author: zw
 * @time: 2023/5/22 17:33
 */
public abstract class BaseActivity<VB extends ViewDataBinding> extends AppCompatActivity {

    public VB mBinding;

    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        createBinding();
    }

    private void createBinding() {
        Class<VB> vbClass = getVbClass();
        try {
            if (vbClass == null) {
                return;
            }
            Method method = vbClass.getMethod("inflate", LayoutInflater.class);
            mBinding = (VB) method.invoke(null, getLayoutInflater());
            setContentView(mBinding.getRoot());
        } catch (NoSuchMethodException | InvocationTargetException | IllegalAccessException e) {
            e.printStackTrace();
        }
    }

    private Class<VB> getVbClass() {
        ParameterizedType parameterizedType = (ParameterizedType) this.getClass().getGenericSuperclass();
        if (parameterizedType == null) {
            return null;
        }
        Class<VB> vbClass = (Class<VB>) parameterizedType.getActualTypeArguments()[0];
        return vbClass;
    }
}

3.在Activity中使用如下

package com.zw.databindingdemo.java;

import android.os.Bundle;

import androidx.annotation.Nullable;
import androidx.fragment.app.FragmentManager;
import androidx.fragment.app.FragmentTransaction;

import com.zw.databindingdemo.databinding.ActivityTestBinding;

/**
 * 描述:
 * @author: zw
 * @time: 2023/5/22 17:33
 */
public class TestActivity extends BaseActivity<ActivityTestBinding> {
    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        mBinding.tvName.setText("测试 java Activity");
        mBinding.btnGo.setOnClickListener(v -> {
            initFragment();
        });
    }

    private void initFragment() {
        FragmentManager fm = getSupportFragmentManager();
        FragmentTransaction ft = fm.beginTransaction();
        ft.replace(mBinding.frameLayout.getId(), new TestFragment());
        ft.commit();

    }
}

4.在BaseFragment的封装

package com.zw.databindingdemo.java;

import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.databinding.ViewDataBinding;
import androidx.fragment.app.Fragment;

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.ParameterizedType;



/**
 * 描述:
 * @author: zw
 * @time: 2023/5/22 17:33
 */
public abstract class BaseFragment<VB extends ViewDataBinding> extends Fragment {


    public VB mBinding;

    @Nullable
    @Override
    public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        createBinding(inflater, container);
        return mBinding.getRoot();
    }

    private void createBinding(LayoutInflater inflater, ViewGroup container) {
        Class<VB> vbClass = getVbClass();
        try {
            if (vbClass == null) {
                return;
            }
         /*   Method method = vbClass.getMethod("inflate", LayoutInflater.class, ViewGroup.class, Boolean.class);*/
            Method method = vbClass.getMethod("inflate", LayoutInflater.class);
            mBinding = (VB) method.invoke(null, inflater);
        } catch (NoSuchMethodException | InvocationTargetException | IllegalAccessException e) {
            e.printStackTrace();
        }
    }

    private Class<VB> getVbClass() {
        ParameterizedType parameterizedType = (ParameterizedType) this.getClass().getGenericSuperclass();
        if (parameterizedType == null) {
            return null;
        }
        return (Class<VB>) parameterizedType.getActualTypeArguments()[0];
    }
}

5.在Fragment的使用如下

package com.zw.databindingdemo.java;

import android.os.Bundle;
import android.view.View;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import com.zw.databindingdemo.databinding.FragmentTestBinding;


/**
 * 描述:
 * @author: zw
 * @time: 2023/5/22 17:33
 */
public class TestFragment extends BaseFragment<FragmentTestBinding> {

    @Override
    public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
        super.onViewCreated(view, savedInstanceState);
        mBinding.tvName.setText("测试 java Fragment");
    }
}

6.Kotlin 版本

 package com.zw.databindingdemo.kotlin

import android.os.Bundle
import android.view.LayoutInflater
import androidx.appcompat.app.AppCompatActivity
import androidx.databinding.ViewDataBinding
import java.lang.reflect.ParameterizedType

/**
 * 描述:
 * @author: zw
 * @time: 2023/5/22 17:33
 */
abstract class BaseActivityKotlin<VB : ViewDataBinding> : AppCompatActivity() {

    public lateinit var mBinding: VB

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        mBinding = createBinding()
        setContentView(mBinding.root)
    }

    private fun createBinding(): VB {
        val vbClass = getVBClass()
        val method = vbClass.getMethod("inflate", LayoutInflater::class.java)

        return method.invoke(null, layoutInflater) as VB
    }

    @Suppress("UNCHECKED_CAST")
    private fun getVBClass(): Class<VB> {
        val type = javaClass.genericSuperclass as ParameterizedType
        return type.actualTypeArguments[0] as Class<VB>
    }
}

package com.zw.databindingdemo.kotlin

import android.os.Bundle
import com.zw.databindingdemo.databinding.ActivityTestKotlinBinding

/**
 * 描述:
 * @author: zw
 * @time: 2023/5/22 17:33
 */
class TestActivityKotlin: BaseActivityKotlin<ActivityTestKotlinBinding>() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)

        mBinding.tvName.text = "测试 Kotlin Activity"
        mBinding.btnGo.setOnClickListener { initFragment() }
    }

    private fun initFragment() {
        val fm = supportFragmentManager
        val ft = fm.beginTransaction()
        ft.replace(mBinding.frameLayout.id, TestFragmentKotlin())
        ft.commit()
    }
}
package com.zw.databindingdemo.kotlin

import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.databinding.ViewDataBinding
import androidx.fragment.app.Fragment
import java.lang.reflect.ParameterizedType

/**
 * 描述:
 * @author: zw
 * @time: 2023/5/22 17:33
 */
abstract class BaseFragmentKotlin<VB : ViewDataBinding> : Fragment() {


    public lateinit var mBinding: VB

    override fun onCreateView(
        inflater: LayoutInflater,
        container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View? {
        mBinding = createBinding(inflater, container)
        return mBinding.root
    }

    private fun createBinding(inflater: LayoutInflater, container: ViewGroup?): VB {
        val vbClass = getVBClass()
        val method = vbClass.getMethod(
            "inflate",
            LayoutInflater::class.java,
            ViewGroup::class.java,
            Boolean::class.java
        )

        return method.invoke(null, inflater, container, false) as VB
    }

    @Suppress("UNCHECKED_CAST")
    private fun getVBClass(): Class<VB> {
        val type = javaClass.genericSuperclass as ParameterizedType
        return type.actualTypeArguments[0] as Class<VB>
    }

}
package com.zw.databindingdemo.kotlin

import android.os.Bundle
import android.view.View
import com.zw.databindingdemo.databinding.FragmentTestKotlinBinding

/**
 * 描述:
 * @author: zw
 * @time: 2023/5/22 17:33
 */
class TestFragmentKotlin : BaseFragmentKotlin<FragmentTestKotlinBinding>() {

    override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)
        mBinding.tvName.text = "测试 Kotlin Fragment"
    }
}
全部评论

相关推荐

不愿透露姓名的神秘牛友
07-07 12:04
毕业生招你惹你了,问一个发薪日来一句别看网上乱七八糟的你看哪个工作没有固定发薪日扭头就取消了面试就问了一句公司都是这个态度吗还搞上人身攻击了...
程序员小白条:呃呃呃,都还没面试,我都不会问这么细,何况通不通过,去不去都另说,你没实力和学历的话,在外面就这样,说实话没直接已读不回就不错了,浪费时间基本上
点赞 评论 收藏
分享
避坑恶心到我了大家好,今天我想跟大家聊聊我在成都千子成智能科技有限公司(以下简称千子成)的求职经历,希望能给大家一些参考。千子成的母公司是“同创主悦”,主要经营各种产品,比如菜刀、POS机、电话卡等等。听起来是不是有点像地推销售公司?没错,就是那种类型的公司。我当时刚毕业,急需一份临时工作,所以在BOSS上看到了千子成的招聘信息。他们承诺无责底薪5000元,还包住宿,这吸引了我。面试的时候,HR也说了同样的话,感觉挺靠谱的。于是,我满怀期待地等待结果。结果出来后,我通过了面试,第二天就收到了试岗通知。试岗的内容就是地推销售,公司划定一个区域,然后你就得见人就问,问店铺、问路人,一直问到他们有意向为止。如果他们有兴趣,你就得摇同事帮忙推动,促进成交。说说一天的工作安排吧。工作时间是从早上8:30到晚上18:30。早上7点有人叫你起床,收拾后去公司,然后唱歌跳舞(销售公司都这样),7:55早课(类似宣誓),8:05同事间联系销售话术,8:15分享销售技巧,8:30经理训话。9:20左右从公司下市场,公交、地铁、自行车自费。到了市场大概10点左右,开始地推工作。中午吃饭时间大约是12:00,公司附近的路边盖饭面馆店自费AA,吃饭时间大约40分钟左右。吃完饭后继续地推工作,没有所谓的固定中午午休时间。下午6点下班后返回公司,不能直接下班,需要与同事交流话术,经理讲话洗脑。正常情况下9点下班。整个上班的一天中,早上到公司就是站着的,到晚上下班前都是站着。每天步数2万步以上。公司员工没有自己的工位,百来号人挤在一个20平方米的空间里听经理洗脑。白天就在市场上奔波,公司的投入成本几乎只有租金和工资,没有中央空调。早上2小时,晚上加班2小时,纯蒸桑拿。没有任何福利,节假日也没有3倍工资之类的。偶尔会有冲的酸梅汤和西瓜什么的。公司的晋升路径也很有意思:新人—组长—领队—主管—副经理—经理。要求是业绩和团队人数,类似传销模式,把人留下来。新人不能加微信、不能吐槽公司、不能有负面情绪、不能谈恋爱、不能说累。在公司没有任何坐的地方,不能依墙而坐。早上吃早饭在公司外面的安全通道,未到上班时间还会让你吃快些不能磨蹭。总之就是想榨干你。复试的时候,带你的师傅会给你营造一个钱多事少离家近的工作氛围,吹嘘工资有多高、还能吹自己毕业于好大学。然后让你早点来公司、无偿加班、抓住你可能不会走的心思进一步压榨你。总之,大家在找工作的时候一定要擦亮眼睛,避免踩坑!———来自网友
qq乃乃好喝到咩噗茶:不要做没有专业门槛的工作
点赞 评论 收藏
分享
05-12 17:00
门头沟学院 Java
king122:你的项目描述至少要分点呀,要实习的话,你的描述可以使用什么技术,实现了什么难点,达成了哪些数字指标,这个数字指标尽量是真实的,这样面试应该会多很多,就这样自己包装一下,包装不好可以找我,我有几个大厂最近做过的实习项目也可以包装一下
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务