在Android中,可以通過編程的方式動態(tài)生成控件。下面是一個簡單的示例,演示如何動態(tài)生成一個Button控件:
container
的LinearLayout作為容器。<LinearLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
</LinearLayout>
LinearLayout container = findViewById(R.id.container);
Button button = new Button(this);
button.setText("動態(tài)生成的按鈕");
container.addView(button);
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);
button.setLayoutParams(layoutParams);
通過上述步驟,就可以在Android中動態(tài)生成一個Button控件,并將其添加到指定的容器中。同樣的方式,你可以根據(jù)需要動態(tài)生成其他類型的控件。