我正在使用 eclipse Android SDK,因为我可以看到内置的代码生成器工具可以从当前类生成 getters() 和 setters()。我想知道是否有这样的工具可以从给定的布局自动生成 Android View 类实例到当前类中。可能在 onCreate() 回调中自动实例化它们。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="5dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="5dp"
android:orientation="vertical"
tools:context=".Main" >
<TextView
style="@style/Divider_Title"
android:text="@string/pi_name_title" />
<View style="@style/Divider" />
<EditText
android:id="@+id/et_firstname"
style="@style/EditText"
android:hint="@string/pi_first_name"
android:inputType="textPersonName" />
<EditText
android:id="@+id/et_lastname"
style="@style/EditText"
android:hint="@string/pi_last_name"
android:inputType="textPersonName" />
....
将为已经存在的类 SignIn 生成
public class SignIn extends FragmentActivity {
private EditText et_firstname;
private EditText et_lastname;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_registration);
et_firstname = (EditText) findViewById(R.id.et_firstname);
et_lastname = (EditText) findViewById(R.id.et_lastname);
...
}