我使用ListView显示一些JSON数据,并希望根据其类型(Artist,Release,Label ...)显示每个结果。
我将使用由每种结果实现的接口:
public interface Result {
public Int getId();
public String getThumb();
// ...
}
我想知道哪些选择是最好的解决方案(我对更好的事情持开放态度,这就是我的最佳选择):
enum ResultType
(因此,继承的类必须在ResultType.ARTIST
方法中返回自己的值getType()
isInstance()
我想知道执行与此C代码(函数指针数组)等效的内容的最佳方法是什么,因为我希望避免使用许多if
/ else
语句。
typedef struct s_func {
const char *type_name;
void* (*func_pointer)(void *result_infos);
} t_func;
static t_func type_array[] = {
{"artist", artist_function},
{"label", label_function},
// ....
{NULL, NULL}
}
void check_type(const char *type_string)
{
int i, j = 0;
char *key_value;
// compare string and array key
while (type_array && type_array[i][0]) {
key_value = type_array[i][0];
// if key match
if (type_string && strncmp(type_string, key_value, strlen(type_string)) == 0) {
type_array[i][1](); // call appropriate function;
}
i++;
}
}
我想它会使用HashMap
但是(我可能错了)它似乎没有一个小写符号。有没有简单的方法来构建HashMap
对?
谢谢
答案 0 :(得分:0)
我认为您可以使用ArrayAdapter。 看看this tutorial,看看我的意思。
它需要一些麻烦,以便它可以处理不同种类的物品。 创建一个接口MyListItem
public interface MyListItem {
public int getLayout();
public void bindToView(View v);
}
为Artist,Release,Label的显示制作不同的布局。 创建实现MyListItem的类Artist,Release,Label。
public class Artist implements MyListItem {
private String Name;
public Artist(String name){
this.name = name;
}
public int getLayout() {
return R.layout.artistlayout;
}
public void bindToView(View v) {
TextView textView = (TextView) rowView.findViewById(R.id.artistLabel);
textView.setText(name);
}
}
现在,适配器只需要调用正确的方法来填充所选项目的视图。
public class MySimpleArrayAdapter extends ArrayAdapter<MyListItem> {
private final Context context;
private final MyListItem[] values;
public MySimpleArrayAdapter(Context context, MyListItem[] values) {
super(context, android.R.layout.simple_list_item_1, values);
this.context = context;
this.values = values;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
MyListItem item = values[position];
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(item.getLayout(), parent, false);
item.bindTo(view);
return view;
}
}