convert ArrayList to string[]

后端 未结 2 1982
一个人的身影
一个人的身影 2021-01-28 01:37

I have class Person

class person{
int ID ;
sting FirstName ;
string Last Name ;
String Telephone ;

}

and I have ArrayList

2条回答
  •  暖寄归人
    2021-01-28 02:09

    Better to use Custom Adapter. Here you do not need to convert ArrayList to String ArrayList. You able to set data via array-list position.

    link

    Thanks

提交回复
热议问题