I used ListView to display data from database , for example I have three columns and I use new line for each column in the same ListView item ,but I wondered if there is control like data table for android, what do you think the best control to use in this case ?
質問する
1815 次
1 に答える
0
CursorLoader を使用した ListView が最良の選択肢かもしれません:
http://developer.android.com/guide/topics/ui/layout/listview.html
私のチームは、行全体で一貫したウィジェット幅を持つ単なる ListView としてテーブルを作成しました。
同じ種類のデータ読み込みをサポートする AdapterView の他のサブクラスをチェックアウトできます。
ここにガイドがあります:
http://developer.android.com/guide/topics/ui/binding.html
そして参照:
http://developer.android.com/reference/android/widget/AdapterView.html
誰かがもっと良いことを知っているかどうか興味がありますか、おそらく良いサードパーティのオプションですか?
于 2013-06-21T15:17:20.320 に答える