グリッド ビューとリスト ビューの 2 種類のビューでファイルを表示するダッシュボードがあります。両方に 2 つの個別のカスタム配列アダプター オブジェクトを使用しています。両方のビューに同じ配列アダプターを使用する方法はありますか
ArrayList<DocumentItem> documentsList = new ArrayList<DocumentItem>();
現在、グリッド ビュー アダプターは次のようになっています。
DocumentsListAdapter gridAdapter = new DocumentsListAdapter(this, R.layout.grid_documentitem, documentsList);
リストビューは次のようになります
DocumentsListAdapter listAdapter = new DocumentsListAdapter(this, R.layout.list_documentitem, documentsList);
どちらも、アイテムを表示するために使用するレイアウトによって異なります。この重複を克服するために私を導いてください