カスタム TextView を作成しましたが、これらの TextView を EditText の下などの特定の位置に動的に追加したいと考えています。誰かがこれを行う方法を教えてもらえますか? カスタム textView を XML ではなく Java を介して動的に追加したいのですが、これに addView() を使用するにはどうすればよいですか?
XML の一部は (私の XML ファイルのサイズが非常に大きいため):
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainStaffScrollView"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<!-- buttons,spinners,edittexts etc-->
<Button
android:id="@+id/specialisationStaffSpinner"
style="?android:attr/spinnerStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="5dp"
android:gravity="left|center_vertical"
android:text="@string/names" />
<!-- here i want to add my custom view-->
</LinearLayout>
</ScrollView>