欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android淺析viewBinding和DataBinding

 更新時(shí)間:2022年09月15日 09:02:15   作者:FranzLiszt1847  
這篇文章主要介紹了Android淺析viewBinding和DataBinding,文章圍繞主題展開詳細(xì)的內(nèi)容介紹,具有一定的參考價(jià)值,需要的小伙伴可以參考一下

viewBinding

優(yōu)點(diǎn)

當(dāng)一個(gè)頁面布局出現(xiàn)多個(gè)控件時(shí),使用findViewById去進(jìn)行控件綁定,過于冗長(zhǎng),且存在NULL指針異常風(fēng)險(xiǎn)。viewBinding直接創(chuàng)建對(duì)視圖的引用,不存在因控件ID不存在而引發(fā)的NULL指針異常。并且在綁定類中對(duì)控件添加@NonNull注解

findViewByIdviewBinding
冗長(zhǎng)簡(jiǎn)短
NULLNULL安全

配置

3.6之前的版本在build.gradle文件中聲明如下定義

 viewBinding {
            enabled = true
        }

4.0以上的版本在build.gradle文件中聲明如下定義

 buildFeatures {
            viewBinding = true
        }

聲明如上定義之后,點(diǎn)擊同步(Sync Now)按鈕,系統(tǒng)會(huì)自動(dòng)生成viewBinding類,例如MainActivity會(huì)生成名為ActivityMainBinding的類,ReceiveActivity會(huì)生成名為ActivityReceiveBinding的類,以此類推;
以上viewBinding類會(huì)生成在如下路徑文件中

build//generated//data_binding_base_class_source_out//debug//out//com.你的包名//databinding

使用

使用步驟很簡(jiǎn)單,需要被調(diào)用的控件聲明id就行,然后聲明viewBinding類對(duì)象

private ActivityMainBinding binding;

綁定視圖:

binding = ActivityMainBinding.inflate(getLayoutInflater());
setContentView(binding.getRoot());

控件引用:

binding.postMes.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                startActivity(new Intent(MainActivity.this,ReceiverActivity.class));
            }
        });

源碼解析

如上所示,我們使用了ActivityMainBinding.inflate()方法進(jìn)行視圖綁定和binding.getRoot()方法獲取視圖。
首先我們?cè)谕獠客ㄟ^調(diào)用ActivityMainBinding.inflate()方法。

  @NonNull
  public static ActivityMainBinding inflate(@NonNull LayoutInflater inflater) {
    return inflate(inflater, null, false);
  }

然后內(nèi)部進(jìn)行重載,添加我們的Avcivity的布局文件,并調(diào)研bind(root)方法

  @NonNull
  public static ActivityMainBinding inflate(@NonNull LayoutInflater inflater,
      @Nullable ViewGroup parent, boolean attachToParent) {
    View root = inflater.inflate(R.layout.activity_main, parent, false);
    if (attachToParent) {
      parent.addView(root);
    }
    return bind(root);
  }

在bind方法中進(jìn)行控件綁定,通過其findChildViewById()方法

@NonNull
  public static ActivityMainBinding bind(@NonNull View rootView) {
    // The body of this method is generated in a way you would not otherwise write.
    // This is done to optimize the compiled bytecode for size and performance.
    int id;
    missingId: {
      id = R.id.content;
      TextView content = ViewBindings.findChildViewById(rootView, id);
      if (content == null) {
        break missingId;
      }

      id = R.id.postMes;
      Button postMes = ViewBindings.findChildViewById(rootView, id);
      if (postMes == null) {
        break missingId;
      }
      return new ActivityMainBinding((LinearLayout) rootView, content, postMes);
    }
    String missingId = rootView.getResources().getResourceName(id);
    throw new NullPointerException("Missing required view with ID: ".concat(missingId));
  }

然后在findChildViewById()方法中最終也使用到了findViewById()方法,但差距在于跳過視圖本身

 /**
     * Like `findViewById` but skips the view itself.
     *
     * @hide
     */
    @Nullable
    public static <T extends View> T findChildViewById(View rootView, @IdRes int id) {
        if (!(rootView instanceof ViewGroup)) {
            return null;
        }
        final ViewGroup rootViewGroup = (ViewGroup) rootView;
        final int childCount = rootViewGroup.getChildCount();
        for (int i = 0; i < childCount; i++) {
            final T view = rootViewGroup.getChildAt(i).findViewById(id);
            if (view != null) {
                return view;
            }
        }
        return null;
    }

最后通過將獲取到的控件定義與內(nèi)部定義的字段進(jìn)行縫合,以暴露給外部使用

  @NonNull
  private final LinearLayout rootView;

  @NonNull
  public final TextView content;

  @NonNull
  public final Button postMes;
  private ActivityMainBinding(@NonNull LinearLayout rootView, @NonNull TextView content,
      @NonNull Button postMes) {
    this.rootView = rootView;
    this.content = content;
    this.postMes = postMes;
  }

DataBinding

配置

依舊在build.gradle文件中配置如下定義:

 dataBinding {
            enabled = true
        }

創(chuàng)建實(shí)體類

實(shí)體類通過繼承BaseObservable類,而BaseObservable又實(shí)現(xiàn)了Observable,從而獲取添加和移除監(jiān)聽的機(jī)制。
在get()方法中使用@Bindable注解,會(huì)自動(dòng)生成BR類,此類中將添加@Bindable的字段聲明成常量,然后在set()方法使用notifyPropertyChanged()配合使用,當(dāng)數(shù)據(jù)發(fā)生變化時(shí),dataBinding會(huì)自動(dòng)修改該字段的值。

public class EventMessage extends BaseObservable {
    public String title;
    public EventMessage(){

    }
    public EventMessage(String title){
        this.title = title;
    }
    @Bindable
    public String getTitle() {
        return title;
    }
    /**
     * @param title*/
    public void setTitle(String title) {
        this.title = title;
        notifyPropertyChanged(BR.title);
    }
}

創(chuàng)建布局

創(chuàng)建layout標(biāo)簽布局才會(huì)生成ActivityMainBinding(以及布局文件名而定)
EditText通過使用如下定義進(jìn)行綁定,

 android:text="@={viewModel.message.title}"

Button通過如下定義進(jìn)行點(diǎn)擊事件監(jiān)聽

 android:onClick="@{viewModel.setText}"

以上兩者的存在差距,EditText多了一個(gè)=,而Button沒有,并且Button綁定監(jiān)聽事件,不需要加()

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

    <data>
        <variable
            name="viewModel"
            type="com.franzliszt.databinding.ViewModel" />

    </data>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity"
        android:orientation="vertical"
        android:gravity="center">
        <EditText
            android:id="@+id/inputText"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:hint="default"
            android:text="@={viewModel.message.title}"/>
        <TextView
            android:id="@+id/ShowText"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text=""/>
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="update"
            android:onClick="@{viewModel.setText}"/>
    </LinearLayout>
</layout>

創(chuàng)建viewModel

通過監(jiān)聽Button點(diǎn)擊事件,在其中監(jiān)聽EditText輸入事件,并將其輸入的字符串顯示在TextView中

public class ViewModel {
    private ActivityMainBinding binding;
    public EventMessage message;
    public ViewModel(ActivityMainBinding binding, EventMessage message){
        this.binding = binding;
        this.message = message;
    }
    public void setText(View view){
        String str = message.getTitle();
        binding.ShowText.setText(str);
    }
}

dataBinding綁定

 private ActivityMainBinding binding;
binding = DataBindingUtil.setContentView( this,R.layout.activity_main );
binding.setViewModel(new ViewModel(binding,new EventMessage()));

到此這篇關(guān)于Android淺析viewBinding和DataBinding的文章就介紹到這了,更多相關(guān)Android viewBinding 內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • Android drawable微技巧,你不知道的drawable細(xì)節(jié)

    Android drawable微技巧,你不知道的drawable細(xì)節(jié)

    今天小編就為大家分享一篇關(guān)于Android drawable微技巧,你不知道的drawable細(xì)節(jié),小編覺得內(nèi)容挺不錯(cuò)的,現(xiàn)在分享給大家,具有很好的參考價(jià)值,需要的朋友一起跟隨小編來看看吧
    2018-10-10
  • Android AES加密工具類分享

    Android AES加密工具類分享

    這篇文章主要介紹了Android AES加密工具類分享,本文給出了實(shí)現(xiàn)代碼和使用例子,本文使用PKCS5Padding加密方式實(shí)現(xiàn),需要的朋友可以參考下
    2014-10-10
  • Android自定義view實(shí)現(xiàn)圓的擴(kuò)散效果

    Android自定義view實(shí)現(xiàn)圓的擴(kuò)散效果

    這篇文章主要為大家詳細(xì)介紹了Android自定義view實(shí)現(xiàn)圓的擴(kuò)散效果,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2019-01-01
  • Android編程設(shè)置TextView顏色setTextColor用法實(shí)例

    Android編程設(shè)置TextView顏色setTextColor用法實(shí)例

    這篇文章主要介紹了Android編程設(shè)置TextView顏色setTextColor用法,結(jié)合實(shí)例形式分析了Android設(shè)置TextView顏色setTextColor、ColorStateList等方法的使用技巧與布局文件的設(shè)置方法,需要的朋友可以參考下
    2016-01-01
  • Android Studio 實(shí)現(xiàn)九宮格功能

    Android Studio 實(shí)現(xiàn)九宮格功能

    這篇文章主要介紹了Android Studio 實(shí)現(xiàn)九宮格,本文通過實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2020-04-04
  • Android自定義Button并設(shè)置不同背景圖片的方法

    Android自定義Button并設(shè)置不同背景圖片的方法

    這篇文章主要介紹了Android自定義Button并設(shè)置不同背景圖片的方法,涉及Android自定義控件的功能實(shí)現(xiàn)與布局相關(guān)技巧,需要的朋友可以參考下
    2016-01-01
  • Android手機(jī)獲取Mac地址的方法

    Android手機(jī)獲取Mac地址的方法

    這篇文章主要為大家詳細(xì)介紹了Android手機(jī)獲取Mac地址的方法,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-05-05
  • ListView 分頁加載更新實(shí)例分享

    ListView 分頁加載更新實(shí)例分享

    ListView是android中最常用的控件之一,本文將詳細(xì)介紹此功能的實(shí)現(xiàn)
    2012-11-11
  • Android自定義控件之電話撥打小鍵盤

    Android自定義控件之電話撥打小鍵盤

    這篇文章主要為大家詳細(xì)介紹了Android自定義控件之電話撥打小鍵盤,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2018-04-04
  • Android仿淘寶商品詳情頁效果

    Android仿淘寶商品詳情頁效果

    這篇文章主要為大家詳細(xì)介紹了Android仿淘寶商品詳情頁效果,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2018-10-10

最新評(píng)論