告別 findViewById

利用ButterKnife來實現利用註解綁定控件。

  • 概述 開發環境:Android studio 依賴組件:butterknife 依賴插件 :Android ButterKnife Zeleznyandroid

  • 步驟:gradle

    1. 在gradle中添加文件依賴: compile 'com.jakewharton:butterknife:7.0.1'
    2. 添加 Android ButterKnife Zelezny 插件 file-->setting-->Plugins--> 查找Android Butterknfie Zelezny,安裝完成後重啓Android Studio
  • 示例程序: XML代碼: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context="com.example.bindtest.MainActivity">插件

    <TextView
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="Hello World!"
          android:id="@+id/tv_test"/>
      <EditText
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:id="@+id/edit_test"/>
    
      </RelativeLayout>

在setConTentView上邊右擊,選擇Generate 在setConTentView上邊右擊,選擇Generatecode

選擇Generate Butterknife Injectionsxml

輸入圖片說明

最後選擇須要的選項,提交。圖片

輸入圖片說明

完成控件綁定utf-8

輸入圖片說明

相關文章
相關標籤/搜索