以前はログインしていませんでした。以下を見つけてください: 上部の親 XML、子レイアウト XML、textView XML、および挿入コード。助けてくれてありがとう!
上位の親 XML
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/tasks_view">
</LinearLayout>
子レイアウト XML
<LinearLayout
android:orientation="vertical"
android:id="@+id/task_line_tasks"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
TextView XML
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:textSize="10pt"
android:layout_width="40dip"
android:layout_height="fill_parent"
android:background="#EAADEA"
android:textColor="#000000"/>
挿入コード:
inflater.inflate(R.layout.person_line, tasks_view);
newPersonLine = (LinearLayout) tasks_view.getChildAt(tasks_view.getChildCount()-1);
newPersonLine.setId(i);
newPersonName = (TextView)newPersonLine.getChildAt(0);
newPersonName.setId(0);
newPersonName.setText(people[i][0]);