butterknife插件是用于android開發(fā)中,對于較復(fù)雜的布局使用注解技術(shù),可以提高代碼編寫效率,是一個(gè)很好用的開源框架,給大家提供的是butterknifejar包,有需要的趕快下載吧!
使用方法
把下載下來的jar包,放到項(xiàng)目的libs下,就會自動導(dǎo)入項(xiàng)目了。
配置eclips,鼠標(biāo)對準(zhǔn)需要注解的項(xiàng)目,單擊右鍵 poperties –>java Compiler –>
Annotation Procession –> 鉤一下 Enable project specific settings 其它的就會自動鉤上了
–> Factory Path ( 鉤一下Enable project specific settings )–> 最后Add …. JARs 把剛剛下載的jar包來。這樣eclips配置就可以了。
剛是用注解,直接上代碼。 xml部分 <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" > <TextView android:id="@+id/tv_test" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:text="@string/hello_world" tools:context=".MainActivity" /> </RelativeLayout> java部分 package com.msquirrel.main; import butterknife.ButterKnife; import butterknife.InjectView; import butterknife.OnClick; import android.os.Bundle; import android.app.Activity; import android.widget.TextView; public class MainActivity extends Activity { @InjectView(R.id.tv_test) TextView tvTest; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); ButterKnife.inject(this); tvTest.setText("test"); } @OnClick(R.id.tv_test) public void sayHi() { tvTest.setText("Hello!"); } } 這樣就算完成了,就可以使用注解了。