Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android之懶人框架 ButterKnife 8.4添加使用

Android之懶人框架 ButterKnife 8.4添加使用

編輯:關於Android編程

ButterKnife是一個專注於Android系統的View注入框架,可以減少大量的findViewById以及 setOnClickListener代碼,可視化一鍵生成。

1、Library Dependency 搜索添加butterknife
compile ‘com.jakewharton:butterknife:8.4.0’

2、 項目的Gradle文件

classpath ‘com.neenbedankt.gradle.plugins:android-apt:1.8’ //增加這一句

dependencies {
    classpath 'com.android.tools.build:gradle:2.1.2'
    classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' //增加這一句
    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}

3、 app的Gradle文件

apply plugin: ‘com.neenbedankt.android-apt‘//增加這一句

dependencies {
compile fileTree(dir: ‘libs’, include: [‘*.jar’])
testCompile ‘junit:junit:4.12’
compile ‘com.android.support:appcompat-v7:24.0.0’
compile ‘com.jakewharton:butterknife:8.4.0’//buttetknife
apt ‘com.jakewharton:butterknife-compiler:8.4.0’//添加這一句 } “`

4、使用
這裡寫圖片描述

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved