我有這樣的事情:動態地在分隔的文件添加行TableLayout
<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創建第二個):/
WOW。真棒!很多,這是比我的要求更好的方式^^ – user1656546 2013-02-12 12:22:16