我创建了一个自定义 TextView,我想在某个特定位置动态添加这些 TextView,例如在 EditText 下方。有人可以告诉我该怎么做吗?我想通过 java 而不是 XML 动态添加我的自定义 textView,如何使用 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>