欢迎来到另一个findviewbyid() returns null
问题!
我编写了一个适配器类,用于将数组显示到ListView中。并且gues findviewbyid()返回null。 (我检查了有关此主题的所有其他问题,但它们与我的问题无关)。
所以这是我的适配器类:
package de.kosmowski.discogs.wants;
import java.util.ArrayList;
import android.content.Context;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ImageView;
import android.widget.TextView;
import de.kosmowski.discogs.model.Want;
public class WantAdapter extends ArrayAdapter<Want> {
private ArrayList<Want> items;
public WantAdapter(Context context, int textViewResourceId, ArrayList<Want> items) {
super(context, textViewResourceId, items);
this.items = items;
}
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
Want w = items.get(position);
Log.d("WantAdapter", "want:" + w);
if (v == null) {
LayoutInflater vi = (LayoutInflater)this.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
if(w != null && w.getType()!= null && (w.getType().equals(Want.TYPE_RELEASE) || w.getType().equals(Want.TYPE_MASTER)))
{
Log.d(this.getClass().getCanonicalName(), "Choosing Release List Item");
v = vi.inflate(R.layout.releaselistitem, null);
}
else
{
v = vi.inflate(R.layout.lplistitem, null);
}
}
if (w != null) {
ImageView icon = (ImageView) v.findViewById(R.id.typeicon); //Returns NULL at this line
TextView tt = (TextView) v.findViewById(R.id.text1);
if(w.getType() != null)
{
if(w.getType().equals(Want.TYPE_ARTIST))
{
icon.setImageResource(R.drawable.resulttype_artist);
}
else if(w.getType().equals(Want.TYPE_RELEASE))
{
icon.setImageResource(R.drawable.resulttype_lp);
}
else if(w.getType().equals(Want.TYPE_MASTER))
{
icon.setImageResource(R.drawable.resulttype_lp_master);
}
else
{
icon.setImageResource(R.drawable.defaultresult);
}
}
else
{
icon.setImageResource(R.drawable.defaultresult);
}
if (tt != null) {
tt.setText(w.getName()); }
}
return v;
}
}
我标记了返回null的行。
这是膨胀的xml文件(lplistitem和releaselistitem目前完全相同):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal">
<ImageView android:scaleType="center" android:layout_gravity="center_vertical" android:src="@drawable/defaultresult" android:id="@+id/typeicon" android:layout_width="wrap_content" android:layout_height="wrap_content"></ImageView>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:gravity="center_vertical"
android:paddingLeft="6dip"
android:textSize="16px"
android:minHeight="?android:attr/listPreferredItemHeight"
/>
</LinearLayout>
你能看到任何明显的错误吗?一切似乎都适合我。
答案 0 :(得分:4)
所以这个问题与日食有关。在我做了你提到的所有事情并用Google搜索了我的手之后,我认为检查eclipse是否正确是一个好主意。
因此出于某种原因显示给我的布局文件eclipse不是正在编译的文件。因此,在日食中一切都很好。
然后我直接在文件系统中查看了同一个文件,这仍然是旧文件。 所以我刚刚刷新了我的eclipse项目,瞧瞧老文件出现在eclipse中,我又重新编辑了它。那就是ist。我不知道为什么会发生这种情况,这让我感到害怕,eclipse可能存在更多不透明的问题。
我几天前遇到的问题有点像它。
请参阅RuntimeException with Android OptionsMenu
问题出在哪里,在添加新的id资源后,没有自动重新编译R.java文件。
我现在要清理我的eclipse安装并从头开始安装所有内容,以确保在安装过程中没有发生重大错误。
感谢您的回答!
答案 1 :(得分:1)
尝试使用/&gt;终止ImageView XML条目而不是...&gt;&lt; / ImageView&gt;
如果没有,那么尝试逐个删除每个属性(如layout_gravity等)
祝你好运。答案 2 :(得分:1)
我很想不尝试使用LayoutInflater变量,但尝试在一行中扩充布局。此外,我很想将Context存储为私有变量,以确保正在使用正确的上下文。所以我会尝试在你的代码中做不同的事情:
public class WantAdapter extends ArrayAdapter<Want> {
private ArrayList<Want> items;
private Context mContext;
public WantAdapter(Context context, int textViewResourceId, ArrayList<Want> items) {
super(context, textViewResourceId, items);
this.items = items;
mContext = context;
}
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
Want w = items.get(position);
Log.d("WantAdapter", "want:" + w);
if (v == null) {
if(w != null && w.getType()!= null && (w.getType().equals(Want.TYPE_RELEASE) || w.getType().equals(Want.TYPE_MASTER)))
{
Log.d(this.getClass().getCanonicalName(), "Choosing Release List Item");
v = LayoutInflater.from(mContext).inflate(R.layout.releaselistitem, null);
}
else
{
v = LayoutInflater.from(mContext).inflate(R.layout.lplistitem, null);
}
}
我会将这些代码下面的其余代码保持不变。试一试!