-1

textView 应该被实例化,我不知道为什么它在 textView.setText("test"); 处显示 NullPointerException;

public View getView(int position,  View convertView, ViewGroup parent) {

    LayoutInflater inflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    View rowView = inflater.inflate(R.layout.list_navdrawer, parent, false);

    TextView textView = (TextView) rowView.getTag(android.R.id.text1);
    textView.setText("test");

    if (position == mSelectedItem) {
        textView.setTextColor(getContext().getResources().getColor(android.R.color. holo_blue_dark));
        textView.setTypeface(Typeface.DEFAULT_BOLD);
    } else {
        textView.setTextColor(getContext().getResources().getColor(android.R.color.white));
    }

    return textView;
}
4

1 回答 1

0

尝试:

TextView textView = (TextView) rowView.findViewById(android.R.id.text1); 

使用findViewById获取视图。

于 2014-11-23T00:30:37.163 回答