1
我需要將我的組在我的ExpandableListView中的擴展延遲幾毫秒,直到加載子元素的內容爲止。 我正在使用我用BaseExpandableListAdapter擴展的自定義適配器。我需要延遲我的組在我的ExpandableListView中的擴展
有沒有人知道一種方法來做到這一點?
在此先感謝。
我需要將我的組在我的ExpandableListView中的擴展延遲幾毫秒,直到加載子元素的內容爲止。 我正在使用我用BaseExpandableListAdapter擴展的自定義適配器。我需要延遲我的組在我的ExpandableListView中的擴展
有沒有人知道一種方法來做到這一點?
在此先感謝。
您可以創建一個Handler
併發布包含代碼的延遲Runnable
。
Handler handler = new Handler();
handler.postDelayed(new Runnable(){
//Code here
}, 1000);