gpt4 book ai didi

java - Android - 如何使用在内部类上声明的变量?

转载 作者:行者123 更新时间:2023-12-01 18:14:11 25 4
gpt4 key购买 nike

我有这个方法:

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

AnimalWebService animalWebService = restAdapter.create(AnimalWebService.class);

Callback<List<Animal>> callback = new Callback<List<Animal>>() {
@Override
public void success(List<Animal> animals, Response response) {
if (animals == null) {
Context context = getApplicationContext();
CharSequence text = "No animals available!";
int duration = Toast.LENGTH_SHORT;

Toast toast = Toast.makeText(context, text, duration);
toast.show();
}
else {
ListAdapter theAdapter = new MyAdapter(getApplicationContext(), animals);
}
}
@Override
public void failure(RetrofitError retrofitError) {
return;
}
};

animalWebService.get(callback);
theListView.setAdapter(theAdapter);
}

最后我有 theListView.setAdapter(theAdapter);theAdapter 在这里未被识别,因为它是在内部类中声明的。

我该如何解决这个问题?在 Android 中编程时,这种情况的最佳实践是什么?

最佳答案

如果您不需要在 Activity 类的其他部分中引用 theAdapter,我只需从回调中更新它:

    Callback<List<Animal>> callback = new Callback<List<Animal>>() {
@Override
public void success(List<Animal> animals, Response response) {
if (animals == null) {
}
else {
ListAdapter theAdapter = new MyAdapter(getApplicationContext(), animals);
theListView.setAdapter(theAdapter);
}
}
@Override
public void failure(RetrofitError retrofitError) {
return;
}
};

这可以确保您永远不会在 ListView 上调用 setAdapter(null),这很好。您应该根据回调的结果触发事件:您的调用可能会失败(然后调用 failure),或者可能返回一个空列表。在这些情况下,我们不希望将 ListView 附加到适配器。

关于java - Android - 如何使用在内部类上声明的变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30715773/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com