溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

ButterKnife 8.5.1怎么用

發(fā)布時(shí)間:2021-10-18 11:50:36 來(lái)源:億速云 閱讀:127 作者:小新 欄目:移動(dòng)開發(fā)

這篇文章主要為大家展示了“ButterKnife 8.5.1怎么用”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“ButterKnife 8.5.1怎么用”這篇文章吧。

ButterKnife 簡(jiǎn)介

   ButterKnife是一個(gè)專注于Android系統(tǒng)的View注入框架,可以減少大量的findViewById以及setOnClickListener代碼。在7.0版本以后引入了注解處理器,取代了之前利用反射原理進(jìn)行findViewById影響APP性能的實(shí)現(xiàn)方式,不再影響APP運(yùn)行效率。

使用須知:

1.Activity中使用ButterKnife.bind(this);必須在setContentView();之后,父類中bind后,子類不需要再bind

2.Fragment中使用ButterKnife.bind(this, rootView); 根布局View對(duì)象,需要在onDestroyView中解綁

3.注解的屬性不能用private或static修飾,否則會(huì)報(bào)錯(cuò)

4.Activity官方例子中沒有解綁操作,而Fragment需要解綁

使用步驟:

1、添加依賴

    compile 'com.jakewharton:butterknife:8.5.1'

    annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'

備注:只需要添加上述依賴即可使用。

只有當(dāng)你在Library中使用ButterKnife時(shí),才需要如下步驟:

1、在Project的build.gradle中添加:

classpath'com.jakewharton:butterknife-gradle-plugin:8.5.1'

2、在對(duì)應(yīng)Library(Module)中添加:

apply plugin:'com.jakewharton.butterknife'

網(wǎng)上許多的使用文章都把上述兩個(gè)步驟當(dāng)做是必須的。非也!

(注意:To use ButterKnife in a library)

實(shí)際項(xiàng)目

實(shí)際項(xiàng)目中一般都會(huì)有定義一個(gè)BaseActivity或BaseFragment,在基類中綁定,則在其所有的子類中都可以直接使用。需要注意的是,父類中需要在子類的setContentView調(diào)用完后再綁定。

使用完整范例

public class MainActivity extends AppCompatActivity {

    @BindView(R.id.textview)
    TextView textview;
    @BindView(R.id.button)
    Button button;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.layout_new);
        ButterKnife.bind(this);
    }

    @OnClick({R.id.textview, R.id.button})
    public void onViewClicked(View view) {
        switch (view.getId()) {
            case R.id.textview:
                break;
            case R.id.button:
                break;
        }
    }
}

@BindView(R.id.textview)//聲明并綁定變量
TextView textview;
//相當(dāng)于:TextViewtextView = (TextView) findViewById(R.id.textView);
 
@OnClick(R.id.button)//給按鈕綁定方法,可以不聲明引用變量
public void onViewClicked() {
}
 
@BindViews({R.id.button1, R.id.button2, R.id.button3})
public List<Button> mList ;
 
@BindString(R.string.app_name) //綁定字符串
String str;
 
@BindArray(R.array.city ) //綁定數(shù)組
String[] arr ;

在fragment中使用(需要解綁)

private Unbinder unbinder;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.fragment_regist_create, container, false);
    unbinder = ButterKnife.bind(this, view);//需要加多一個(gè)加載了布局的View對(duì)象
    return view;
}

@Override
public void onDestroyView() {
    super.onDestroyView();
    unbinder.unbind();//fragment需要解綁
}

再偷懶一點(diǎn)

Android Studio插件:Android Butterknife Zelezny

方便給整個(gè)布局文件一鍵生成注解。

使用方法:

    在setContentView(R.layout.activity_main)中對(duì)著activity_main右鍵,generate,Generate ButterKnife Injections,勾選需要生成注解的控件即可

ButterKnife 8.5.1怎么用

圖片來(lái)自android-butterknife-zelezny

總結(jié)

一般我認(rèn)為簡(jiǎn)化了findViewById和setOnClickListener之后,已經(jīng)很方便了。并不會(huì)去使用ButterKnife中方方面面的功能,在多控件的界面例如提交表單數(shù)據(jù)時(shí)非常好用。這也就是“80/20”法則在生效吧!對(duì)于使用比較少的其他特性如解除綁定等,用到之時(shí)再嘗試即可!

參考文檔

[Android開發(fā)] ButterKnife8.5.1 使用方法教程總結(jié)

同類型框架參考

google/dagger

https://github.com/google/dagger

androidannotations

https://github.com/androidannotations/androidannotations

附錄:

注解類型

* @BindViews

* @BindView

* @BindArray

* @BindBitmap

* @BindBool

* @BindColor

* @BindDimen

* @BindDrawable

* @BindFloat

* @BindInt

* @BindString

事件類型

* @OnClick

* @OnCheckedChanged

* @OnEditorAction

* @OnFocusChange

* @OnItemClick item

* @OnItemLongClick

* @OnItemSelected

* @OnLongClick

* @OnPageChange

* @OnTextChanged

* @OnTouch

* @Optional

===================================================================================

Github上的使用說明:

Download

dependencies {

  compile 'com.jakewharton:butterknife:8.5.1'

  annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'

}

Snapshots of thedevelopment version are available in Sonatype's snapshots repository.

Library projects

To use ButterKnife in a library, add the plugin to your buildscript:

buildscript {

  repositories {

    mavenCentral()

   }

  dependencies {

    classpath 'com.jakewharton:butterknife-gradle-plugin:8.5.1'

  }

}

and then apply it in your module:

    apply plugin: 'com.android.library'

    apply plugin: 'com.jakewharton.butterknife'

Now make sureyou use R2 instead of R inside allButter Knife annotations.

classExampleActivityextendsActivity {

    @BindView(R2.id.user) EditText username;

    @BindView(R2.id.pass) EditText password;

...

}

以上是“ButterKnife 8.5.1怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI