问题很简单。我在Android中实现了一个导航抽屉。现在,我有一个菜单,其中每个项目都是string-array
中strings.xml
的项目。每次用户单击其中一个菜单项时,都会创建一个片段。在片段类中,我想在项目中switch
,以便用适当的信息填充主要内容。我知道的唯一方法是检查项目的位置,但是如果将来我还要添加其他项目会怎么样?我需要更改代码中的所有位置值。
所以,我想知道是否有办法为每个元素分配一种ID。我已阅读here为每个字符串定义一个单独的字符串,但我该如何检查这些值?我尝试了以下方式,但它给了我一个Constant expression required
错误:
Resources resources = getResources();
switch(item_string) {
case resources.getString(R.string.item1):
//TODO
case resources.getString(R.string.item2):
//TODO
...
答案 0 :(得分:0)
根据Selvin的建议,我在assets/
中创建了一个JSON文件,其中JSON数组的每个元素对应一个包含三个字段(id,name和icon)的菜单项,例如:
[
{"id": 1, "name": "item1", "icon": "icon1"},
{"id": 2, "name": "item2", "icon": "icon2"},
{"id": 3, "name": "item3", "icon": "icon3"},
{"id": 4, "name": "item4", "icon": "icon4"}
]
然后,我首先创建了一个Item
类来映射JSON对象:
public class Item {
private int id;
private String name;
private String icon;
public Item(JSONObject object) {
try {
this.id = object.getInt("id");
this.name = object.getString("name");
this.icon = object.getString("icon");
} catch (JSONException e) {
e.printStackTrace();
}
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getIcon() {
return icon;
}
public void setIcon(String icon) {
this.icon = icon;
}
// Factory method to convert an array of JSON objects into a list of objects
// User.fromJson(jsonArray);
public static ArrayList<Item> fromJson(JSONArray jsonObjects) {
ArrayList<Item> items = new ArrayList<Item>();
for (int i = 0; i < jsonObjects.length(); i++) {
try {
items.add(new Item(jsonObjects.getJSONObject(i)));
} catch (JSONException e) {
e.printStackTrace();
}
}
return items;
}
}
和相应的适配器:
public class ItemAdapter extends ArrayAdapter<Item> {
public ItemAdapter(Context context, ArrayList<Item> items) {
super(context, 0, items);
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
// Get the data item for this position
Item item = getItem(position);
int item_id = item.getId();
String item_name = item.getName();
int item_icon_id = parent.getContext().getResources().getIdentifier(item.getIcon(),
"drawable", parent.getContext().getPackageName());
// Check if an existing view is being reused, otherwise inflate the view
if (convertView == null) {
convertView = LayoutInflater.from(getContext()).inflate(R.layout.drawer_list_item, parent, false);
}
// Lookup view for data population
ImageView item_icon_view = (ImageView) convertView.findViewById(R.id.item_icon);
TextView item_name_view = (TextView) convertView.findViewById(R.id.item_name);
// Populate the data into the template view using the data object
item_name_view.setText(item_name);
item_icon_view.setImageResource(item_icon_id);
// Return the completed view to render on screen
return convertView;
}
}
最后在我的活动中,我传递了所选项目的ID:
Fragment fragment = new MainFragment();
Bundle args = new Bundle();
args.putInt(MainFragment.ARG_ITEM_ID, item.getId());
args.putString(MainFragment.ARG_ITEM_NAME, item.getName());
fragment.setArguments(args);
然后切换我的片段,如下所示:
int item_id = getArguments().getInt(ARG_ITEM_ID);
switch(item_id) {
case 1:
[...]
case 2:
[...]
[...]
希望我的榜样可以帮助其他人。