如何在 google 联系人中添加第二条街线 StructuredPostalAddres (GData)

How to add 2nd street-line in google contacts StructuredPostalAddres (GData)

看完documentation and Google's developer guide,我没有找到要添加第二个地址的行。
例如,如果我想将此地址存储为 Google 联系人:
先生王牌人物
Amphitheatre Village Premium Outlets
1600 圆形剧场 Pkwy
加州山景城 94043
我可以按照开发人员指南中的说明添加街道:

StructuredPostalAddress postalAddress = new StructuredPostalAddress();
postalAddress.setStreet(new Street("1600 Amphitheatre Pkwy")); 


我找不到添加“2 行街道地址”的结构化解决方案。
显然,我可以将两行中的一行添加为房屋名称 (setHousename(housename)) 或 Neighborhood (setNeighborhood(neighborhood)),但这并不完全正确。

很遗憾,没有文档或功能支持您想要完成的任务。根据目前的document pertaining to the element's property你可以选择什么合适的属性来解决你身边的2nd street line。希望对你有帮助。