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

溫馨提示×

溫馨提示×

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

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

Android Studio中ButterKnife插件的安裝與使用詳解

發布時間:2020-10-20 15:23:14 來源:腳本之家 閱讀:230 作者:cxc19890214 欄目:編程語言

1》Android Studio 安裝ButterKnife插件

同安裝其他插件類似,如下:

1.1》打開Plugins界面

Android Studio中ButterKnife插件的安裝與使用詳解

Android Studio中ButterKnife插件的安裝與使用詳解

按照上圖中1,2,3指示操作(注意:這里我的Android Studio中已經安裝了該插件,所以顯示的內容不太一樣)。然后重啟Android Studio。

2》在項目上使用該開源項目(以Android Studio 為例)

2.1》在bulid.gradle中添加依賴

Android Studio中ButterKnife插件的安裝與使用詳解

重新編譯一下該項目,通過后繼續操作。

2.2》在代碼中就可以使用注解的方式了

2.2.1》示例布局文件如下:

<LinearLayout 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:orientation="vertical" 
  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=".MainActivity"> 
 
  <TextView 
    android:id="@+id/text_veiw_tv1" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:text="TextView 1" /> 
 
  <Button 
    android:id="@+id/button_bt1" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:text="Button1" /> 
 
  <TextView 
 
    android:id="@+id/text_veiw_tv2" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:text="TextView 2" /> 
 
 
  <Button 
    android:id="@+id/button_bt2" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:text="Button2" /> 
 
 
</LinearLayout> 

2.2.2》在代碼中使用注解

選擇上述布局文件名,右鍵

Android Studio中ButterKnife插件的安裝與使用詳解

Android Studio中ButterKnife插件的安裝與使用詳解

Android Studio中ButterKnife插件的安裝與使用詳解

選擇“Confirm”后,就會自動生成各個在布局文件中帶有id 屬性的view的注解形式

如下所示:

@Bind(R.id.text_veiw_tv1) 
TextView textVeiwTv1; 
@Bind(R.id.text_veiw_tv2) 
TextView textVeiwTv2; 
@Bind(R.id.button_bt1) 
Button buttonBt1; 
@Bind(R.id.button_bt2) 
Button buttonBt2; 
 
@Override 
protected void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.activity_main); 
  ButterKnife.bind(this); 
 
 
} 

標注如下:

Android Studio中ButterKnife插件的安裝與使用詳解

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

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

AI

阜平县| 海丰县| 沈阳市| 兴隆县| 巴彦淖尔市| 武清区| 高邑县| 宜良县| 县级市| 荥阳市| 黔南| 桂平市| 镇坪县| 巢湖市| 大方县| 岳普湖县| 凤凰县| 彭山县| 隆林| 沧州市| 曲松县| 承德市| 二手房| 呼伦贝尔市| 全南县| 城固县| 梓潼县| 台前县| 林州市| 舞钢市| 昌江| 沙田区| 离岛区| 兰考县| 余姚市| 泰和县| 神木县| 庄河市| 临夏县| 元谋县| 望都县|