Android 開発は初めてで、独自の UI の作成を開始しました。次のように動的に作成できることがわかります(Dynamic Layouts):
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ScrollView sv = new ScrollView(this);
LinearLayout ll = new LinearLayout(this);
ll.setOrientation(LinearLayout.VERTICAL);
sv.addView(ll);
TextView tv = new TextView(this);
tv.setText("Name");
ll.addView(tv);
EditText et = new EditText(this);
ll.addView(et);
Button b = new Button(this);
b.setText("Ok");
ll.addView(b);
}
しかし、netbeans にはResources->layout->main.xmlファイルがあることもわかります。したがって、UI の XML レイアウトを作成できます ( Declaring XML layout )。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Hello World, AndroidTest"
/>
</LinearLayout>
だから私の質問は、私はどれを使うべきですか? Android 開発における動的レイアウトと XML レイアウトの推奨事項と長所/短所は何ですか?