亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

栾川县| 阳城县| 容城县| 连城县| 那曲县| 珲春市| 明星| 任丘市| 塔河县| 石景山区| 舟曲县| 弥渡县| 浦东新区| 锡林郭勒盟| 达拉特旗| 宝清县| 青阳县| 江陵县| 上高县| 昭通市| 临湘市| 乌苏市| 漳州市| 柳河县| 惠水县| 卓资县| 霍山县| 雷山县| 郁南县| 泸西县| 定州市| 富宁县| 岳池县| 峨山| 霸州市| 吉安县| 老河口市| 丰顺县| 武穴市| 宁乡县| 松滋市|