次の例のようなレイアウト xml があります。
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/tile_bg" >
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingTop="10dp" >
<LinearLayout
android:id="@+id/layout_0"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<!-- view stuff here -->
</LinearLayout>
<!-- more linear layouts as siblings to this one -->
</LinearLayout>
私は実際には約 7 つの LinearLayout アイテムを持っており、それぞれ ID が layout_0 などから増加しています。ルート LinearLayout の下にあるすべての LinearLayout アイテムを取得できるようにしたいと考えています。ルート ID に ID を付けて、他のすべてを ID で検索する必要がありますか、それともタイプ別に取得できますか。
レイアウトを膨らませるために使用するコードは次のとおりです。
View view = (View) inflater.inflate(R.layout.flight_details, container, false);
ViewGroup の子を反復できることをどこかで読みましたが、これは View にすぎません。
タイプごとにたくさんの子供を取得する最良の方法は何ですか?