だからここにそれがどのようにあるかです:
TimerTaskを持つAsyncTaskがあります。15秒ごとにAsyncTaskが実行されます。AsyncTaskはXMLデータを取得し、動的に作成されたTableRowに含まれる動的に作成されたTextViewにそれらを配置します。
onPostExecuteすべてのtableRowとTextViewを作成してから、更新する代わりにそれらをdoubleにしないために、tableRowビューを削除します。
protected void onPostExecute(Document result)
{
if(TableLayout.getChildAt(1) == null)
{
//All my code to show tableRow and TextView
else
{
int u = 20;
while(tl.getChildAt(1) != null)
{
if(tl.getChildAt(u) != null)
tl.removeViewAt(u);
u--;
}
}
そうそう、すべてがうまく機能します。timerTaskをxミリ秒待つのではなく、TimerTaskにすぐに再起動するように依頼する方法があるかどうかを知りたいので、もう一度やり直してください。
ご協力いただきありがとうございます!