2012-03-26 17 views
5

私は、XMLパージングを使用して5秒ごとに更新されるリストビューを持っています。リフレッシュ後、リストの現在の位置が最初の位置に戻ります。これを解決する方法はありますか?リストビューの先頭に戻るarrayadapterのデータを更新した後

+0

リストビューをリフレッシュする方法を教えてください。 – flo

+0

おそらくあなたはリストデータをクリアし、すべて新しいものを設定します。あなたは 'ます。public void TimerMethod(){ \t \t runOnUiThread(新しいRunnableを()@flo(int型、int)メソッド – pleerock

+0

http://developer.android.com/reference/android/view/View.html scrollToを使用することができます{ \t \t \tます。public void実行(){ \t \t \t \t // Toast.makeText(getApplicationContext()、 "こんにちはこれはpiyushある"、 \t \t \t \t // Toast.LENGTH_LONG).SHOW(); \t \t \t \t parse(link); \t \t \t \t setAdapter(); \t \t \t} \t \t}); ' このメソッドを5秒ごとに呼び出します。 parse()をxml解析に使用し、新しい値をlistadapterに設定するためのsetAdapter()を使用しました – ASP

答えて

3

lv.smoothScrollToPosition(pos)を使用します。ここで、リストビューをの自動スクロール表示を最後に追加したエントリに更新する場合は、posは任意のint、好ましくはアダプタの長さにすることができます。

public void smoothScrollToPosition (int position) 


Smoothly scroll to the specified adapter position. The view will scroll such that the indicated position is displayed. 
+0

私の場合、これはnotifyDataSetChanged()が起動しても実際に動作する唯一のオプションでした。返信いただきありがとうございます。 – greg7gkb

5

リストを更新するためにsetAdapter()を使用することで、Androidは位置をリセットします。代わりにアダプタを変更してみてください。

使用しているアダプタがわからないので、ここでは2つの例を示します。

ArrayAdapter

adapter = list.getAdapter(); 
if (adapter == null) { 
    // Create new adapter + list.setAdapter() 
} else { 
    adapter.clear(); 
    adapter.addAll(newData); 
    adapter.notify(notifyDataSetChanged()); 
} 

CursorAdapter

adapter.changeCursor(newCursor); 
+0

ここではArrayAdapterを使用しています。しかし、私は上記の "リスト"を得ていませんでした。 – ASP

+0

listは使用しているListViewの略です。 – flo

+0

あなたはいい男です、@flo –

2

このコードはあなたを助けるでしょう....

// get position of listview 
int index = listView.getFirstVisiblePosition(); 
View v = listView.getChildAt(0); 
int top = (v == null) ? 0 : v.getTop(); 

// notify dataset changed or re-assign adapter here 

//re-assign the position of listview after setting the adapter again 
listView.setSelectionFromTop(index, top); 

乾杯:)

+0

素晴らしい!!! – ajay

-1

はこの

を試してみてください
adapter.notifyDataSetChanged(); 
関連する問題