我真的需要你在 WCF Web 服务和 android 方面的帮助。WCF 网络服务示例:
public String[] checkLogin(string userName, string password)
{
string[] result;
result = new string[] { "One", "Two", "Three", "Four" };
return result;
}
我需要在ListView
(android 站点)中填充这个字符串数组值。有人有任何例子吗?提前致谢。