我有这样的东西:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TableRow
android:id="@+id/tableRow1"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/chooseBirthDateText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="25dp"
style="@style/mediumText"
android:gravity="center_horizontal"
android:text="@string/choose_birth_date" />
</TableRow>
</TableLayout>
</ScrollView>
我想添加更多行,但仅在一段时间后(比如说 10 秒)。我想先让这些行不可见,然后再让它们出现。但是这样我的scrollView不能按我的意愿工作(即使下面没有任何东西我也可以向下滚动 - 因为行是不可见的)
所以我想在第二个文件中添加我想要添加的行,在中间时间加载它们并在它们必须出现的那一刻添加它们在 tableRow1 之后。不幸的是,我不知道该怎么做(我说的是连接 2 个文件,而不是在 java 中创建第二个文件):/