gpt4 book ai didi

java - 如何在基础适配器类中使用 if else 条件

转载 作者:行者123 更新时间:2023-12-02 05:57:55 26 4
gpt4 key购买 nike

有什么方法可以在我的适配器类中使用。

public class ImageAdapter extends BaseAdapter {
int mGalleryItemBackground;
private Context mContext;

if(!flag){
////
}
// Here i want to set if else condition but i am not able to do this.*/
}

最佳答案

您只能在方法或构造函数中使用 if-else 语法。我假设您想初始化 ImageAdapter 的字段并查看一些参数。如果是这样,您可以在构造函数中执行此操作:

public class ImageAdapter extends BaseAdapter {
int mGalleryItemBackground;
private Context mContext;
public String myField;


public ImageAdapter(int mGalleryItemBackground, Context mContext, boolean flag) {
this.mGalleryItemBackground = mGalleryItemBackground;
this.mContext = mContext;
if(!flag){
myField = "abc";
} else {
myField = "cba";
}
}
}

关于java - 如何在基础适配器类中使用 if else 条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22909842/

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