Android中的LayoutInflater有什么作用?
Android中的 LayoutInflater 什么用? #1楼 这是另一个与前一个类似的示例,但进一步展示了它可以提供的膨胀参数和动态行为。 假设您的ListView行布局可以包含可变数量的TextView。 所以首先你膨胀基础项View(就像前面的例子一样),然后在运行时循环动态添加TextViews。 使用android:layout_weight还可以完美地对齐所有内容。 以下是Layouts资源: list_layout.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" > <TextView android:id="@+id/field1" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="2"/> <TextView android:id="@+id