91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ButterKnife 8.5.1怎么用

發布時間:2021-10-18 11:50:36 來源:億速云 閱讀:128 作者:小新 欄目:移動開發

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

ButterKnife 簡介

   ButterKnife是一個專注于Android系統的View注入框架,可以減少大量的findViewById以及setOnClickListener代碼。在7.0版本以后引入了注解處理器,取代了之前利用反射原理進行findViewById影響APP性能的實現方式,不再影響APP運行效率。

使用須知:

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

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

3.注解的屬性不能用private或static修飾,否則會報錯

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

使用步驟:

1、添加依賴

    compile 'com.jakewharton:butterknife:8.5.1'

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

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

只有當你在Library中使用ButterKnife時,才需要如下步驟:

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

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

2、在對應Library(Module)中添加:

apply plugin:'com.jakewharton.butterknife'

網上許多的使用文章都把上述兩個步驟當做是必須的。非也!

(注意:To use ButterKnife in a library)

實際項目

實際項目中一般都會有定義一個BaseActivity或BaseFragment,在基類中綁定,則在其所有的子類中都可以直接使用。需要注意的是,父類中需要在子類的setContentView調用完后再綁定。

使用完整范例

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;
//相當于: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 ) //綁定數組
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);//需要加多一個加載了布局的View對象
    return view;
}

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

再偷懶一點

Android Studio插件:Android Butterknife Zelezny

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

使用方法:

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

ButterKnife 8.5.1怎么用

圖片來自android-butterknife-zelezny

總結

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

參考文檔

[Android開發] ButterKnife8.5.1 使用方法教程總結

同類型框架參考

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怎么用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

金平| 大田县| 车险| 平顺县| 房产| 玉门市| 鄢陵县| 长岭县| 教育| 阳谷县| 仲巴县| 兴安盟| 稻城县| 巴彦县| 资兴市| 阳西县| 石柱| 额尔古纳市| 桃园县| 仙居县| 许昌县| 连州市| 永福县| 曲阜市| 德江县| 贞丰县| 城固县| 阆中市| 商水县| 枞阳县| 乌鲁木齐市| 昌江| 潮州市| 苏州市| 科尔| 利川市| 太谷县| 孝感市| 报价| 北安市| 上思县|