我正在从 json url 检索对象列表,并通过添加标签字段和分隔符将其显示为列表。现在,我想让每个标签都可点击,以便每个标签重定向到单独的 url。单击标签时,必须打开一个单独的屏幕,其中包含相应 url 的 json 数据。那么,谁能告诉我如何实现这一目标。如果我能得到一些关于如何做到这一点的示例代码,我将不胜感激......这是我已经完成的一些示例代码......
public VerticalFieldManager showShoppingList(){
try {
jsArrShpList=new JSONArray(strShopping);
totalList= jsArrShpList.length();
for(int i=0;i<totalList;i++){
String strAlert=jsArrShpList.get(i).toString();
JSONObject joAlert=new JSONObject(strAlert);
String shoppingList = joAlert.get("CategoryName").toString();
LabelField shops = new LabelField(shoppingList);
VerticalFieldManager vfmListRow=new VerticalFieldManager();
vfmListRow.add(shops);
vfmListRow.add(new SeparatorField());
vfmShpList.add(vfmListRow);
}
return vfmShpList;