レイアウト ファイルを解析していますがXmlPullParser
、子ビューを認識できるように内部タグをカウントする必要があります。各タグの属性をカウントする方法を見つけましたが、タグを正確にカウントする方法が見つかりません。
次のようなコードがあります。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#0d3fff"
android:text="New Button 1"
android:layout_marginRight="10dp"
android:id="@+id/btnDef1"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btnDef2"/>
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/tv1"/>
</LinearLayout>
タグの子供を数える方法を知っている人はいますLinearLayout
か? 前もって感謝します。