我正在使用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);
...
}
答案 0 :(得分:2)
您可以查看以下link
链接中的插件已经过重构并使用新功能进行更新(基本上已重写)。现在可以基于xml布局生成Activity,Fragment,Adapter。还可以为xml菜单文件生成与菜单相关的代码(处理操作)。并且具有可编辑的模板,因此用户可以更好地控制生成的数据。
http://tmorcinek.github.io/android-codegenerator-plugin-eclipse/
答案 1 :(得分:1)
我们开发了一种工具,可以自动创建视图变量,轻松设置自定义字体和侦听器。您可以使用this