假设我想要一个带有 2 个复选框的自定义视图。我将开始创建这样的布局文件:
<?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="match_parent"
android:orientation="vertical" >
<CheckBox
android:id="@+id/checkBox1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="CheckBox" />
<CheckBox
android:id="@+id/checkBox2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="CheckBox" />
</LinearLayout>
然后创建一个扩展 FrameLayout 的视图,使用 layout-inflator 添加布局:
mInflate.inflate(R.layout.foo, this, true);
我对这种方法的问题是我嵌套了 2 个布局,只是为了获得一个带有 2 个复选框的非常基本的视图。由于我目前正在处理一个非常复杂的布局,因此我正在寻找一种方法来避免在使用布局充气器时避免不必要的布局嵌套。