在Android中,可以通過(guò)以下步驟動(dòng)態(tài)創(chuàng)建View:
dynamic_view.xml
的布局文件,定義一個(gè)TextView:<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/dynamic_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Dynamic TextView" />
LayoutInflater
將布局文件解析為一個(gè)View對(duì)象:LayoutInflater inflater = LayoutInflater.from(context);
View dynamicView = inflater.inflate(R.layout.dynamic_view, null);
LinearLayout linearLayout = findViewById(R.id.linear_layout);
linearLayout.addView(dynamicView);
此時(shí),動(dòng)態(tài)創(chuàng)建的TextView就會(huì)顯示在LinearLayout中。
注意:在實(shí)際使用時(shí),需要根據(jù)需要設(shè)置動(dòng)態(tài)創(chuàng)建的View的屬性和監(jiān)聽(tīng)器等。