gpt4 book ai didi

java - 即使convertView不为null,convertView.findViewById也会返回null

转载 作者:行者123 更新时间:2023-12-02 00:03:11 24 4
gpt4 key购买 nike

我正在尝试显示具有不同类型行的ListView。我有一个由 ArtistLabelRelease 等继承的 Result 抽象类。我从 JSON 响应中获取结果。解析正常,我的工厂成功创建了一些 Result 对象。

使用这些指南 1 , 2 ,我最终扩展了 BaseAdapter

public class SearchResultsActivity extends ListActivity {

private static final String SEARCH_API_ENDPOINT = "http://xxxx.com/database/search?q=";

SearchResultAdapter searchAdapter;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.result_list);
searchAdapter = new SearchResultAdapter();
// handleIntent is needed because android:launchMode="singleTop" mode uses onNewIntent
handleIntent(getIntent());
}

@Override
protected void onNewIntent(Intent intent) {
handleIntent(intent);
}

private void handleIntent(Intent intent) {

if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
String query = intent.getStringExtra(SearchManager.QUERY); // get user input from search widget
String[][] params = new String[][]{{"q", query}}; // prepare GET parameters
HttpRequestHandler requestHandler = new HttpRequestHandler("GET");
String result;

requestHandler.setURL(HttpRequestHandler.API_URL, HttpRequestHandler.SEARCH_QUERY_ENDPOINT);
requestHandler.addParameters(params);
result = requestHandler.sendRequest();
if (result != null && !result.isEmpty()) {
try {
ArrayList<Result> resultList = new ResultFactory(new JSONObject(result)).getResults(); // JSON to Result objects
for (Result res: resultList) {
searchAdapter.addItem(res);
}
setListAdapter(searchAdapter);
} catch (JSONException e) {
System.out.println("xxjsonexception");
}
}
}
}

public class SearchResultAdapter extends BaseAdapter {

private List<Result> searchResults = new ArrayList<Result>();
private LayoutInflater mInflater;

public SearchResultAdapter() {
mInflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}

public void addItem(Result result) {
searchResults.add(result);
notifyDataSetChanged();
}

@Override
public Object getItem(int position) {
return searchResults.get(position);
}

@Override
public long getItemId(int position) {
return position;
}

@Override
public int getCount() {
return searchResults.size();
}

@Override
public int getViewTypeCount() {
return Result.Type.values().length; // enum length
}

@Override
public int getItemViewType(int position) {
return searchResults.get(position).getType().ordinal();
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
Result tmp = searchResults.get(position); // only for testing
System.out.println("xxItem type " + tmp.getType());
View v = searchResults.get(position).getView(mInflater, convertView);
if (v == null) {
System.out.println("xxgetviewnull");
} else {
System.out.println("xxgetviewok");
}
return v;
}
}
}

结果.java:

public abstract class Result {
// general search result class

public enum Type {
ARTIST,
RELEASE,
MASTER,
LABEL,
ERROR,
}

public static final String NODE_RESULTS = "results";
public static final String NODE_TITLE = "title";
public static final String NODE_THUMB = "thumb";
public static final String NODE_RESSOURCE = "resource_url";
public static final String NODE_TYPE = "type";
public static final String NODE_URI = "uri";
public static final String NODE_ID = "id";

public static final String TYPE_ARTIST = "artist";
public static final String TYPE_RELEASE = "release";
public static final String TYPE_MASTER = "master";
public static final String TYPE_LABEL = "label";


protected String thumb;
protected String title;
protected String ressource_url;
protected static Type type;
protected String uri;
protected int id;


public void setData(JSONObject jsonResult) {
try {
setId(jsonResult.getInt(Result.NODE_ID));
setUri(jsonResult.getString(Result.NODE_URI));
setRessource_url(jsonResult.getString(Result.NODE_RESSOURCE));
setThumb(jsonResult.getString(Result.NODE_THUMB));
setTitle(jsonResult.getString(Result.NODE_TITLE));
} catch (JSONException e) {
type = Type.ERROR;
}
}

// getters and setters ..

public abstract View getView(LayoutInflater inflater, View convertView);
}

艺术家.java:

public class Artist extends Result{

public Artist(){
type = Type.ARTIST;
}

@Override
public View getView(LayoutInflater inflater, View convertView) {
if (convertView == null) {
convertView = inflater.inflate(R.layout.list_item_artist, null);
}
TextView textTitle = (TextView) convertView.findViewById(R.id.title_artist);
if (textTitle == null) {
System.out.println("xxtexttitle null");
} else {
System.out.println("xxtexttitleok " + title);
}
textTitle.setText(title);
return convertView;
}

}

标签.java

public class Label extends Result {

public Label() {
type = Type.LABEL;
}

@Override
public View getView(LayoutInflater inflater, View convertView) {
if (convertView == null) {
convertView = inflater.inflate(R.layout.list_item_label, null);
}
if (convertView == null) {
System.out.println("xxconvertviewisnull");
} else {
System.out.println("xxconvertviewok");
}
TextView titleText = (TextView) convertView.findViewById(R.id.title_label);
titleText.setText(title);
return convertView;
}

}

如您所见,我的 ArtistLabel 类非常相似,但只有我的 Label 类在 TextView 上抛出 NPE titleText = (TextView)convertView.findViewById(R.id.title_label).

这不是 setContentView(),因为我在 onCreate 中执行此操作。
我的 Result 对象永远不会 null 也不具有 null 字段。
我确实在 getView 方法中检查 convertView 是否为 null,如果它为 null 则膨胀 View .
我没有使用 ViewHolder,因为 ReleaseMaster 将显示额外的字段。

编辑:

list_item_label.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<TextView android:id="@+id/title_label"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>

</LinearLayout>

list_item_artist.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<TextView android:id="@+id/title_artist"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#FFAAAA"
android:textSize="14pt"/>

</LinearLayout>

最佳答案

这是因为当您到达列表中的 Label 对象时,您的 ConvertView 是“list_item_artist” View 。那么convertview不是null,而是错误的 View 类型,找不到title_label。

颠倒列表顺序,您会得到一个带有艺术家 View 的空指针。

关于java - 即使convertView不为null,convertView.findViewById也会返回null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14428116/

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