總網頁瀏覽量

關於我自己

我的相片
人生的必修課是接受無常,人生的選修課是放下執著。

2012年3月18日 星期日

ArrayList → String[]


========== ========== ↑前因↑ 資料取得====== ==========

========== ========== ↓重點↓ ========== ========== 
ArrayList assignCategory = new ArrayList();

assignCategory.add(cursor.getString(1)); 

String[] str = new String[assignCategory.size()];
for (int i=0;i<assignCategory.size();i++)
{
    str[i] = assignCategory.get(i).toString();

}
========== ========== ↑重點↑ ========== ========== 

========== ========== ↓後果↓ 可應用在====== ==========
DialogInterface.OnClickListener di_onclick = new DialogInterface.OnClickListener()
{
    public void onClick(DialogInterface dialog, int which)
    {

    }
};
AlertDialog.Builder mAB = new AlertDialog.Builder(context);
mAB.setItems(str, di_onclick);

沒有留言:

張貼留言