当我想将一个对象添加到我的列表/数据库时,我得到一个nullpointer异常。我正在膨胀对象的xml文件,但它找不到TextView。 txtView.setText();
中发生异常我的主要活动:
public class MainActivity extends ActionBarActivity {
protected PhoneDBHelper db;
List<Phone> list;
MyAdapter adapt;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
db = new PhoneDBHelper(this);
list = db.getAllPhones();
adapt = new MyAdapter(this, R.layout.list_inner_view, list);
ListView listPhone = (ListView)findViewById(R.id.listView1);
listPhone.setAdapter(adapt);
}
public void addPhoneNow(View v){
EditText t = (EditText) findViewById(R.id.editText1);
EditText author = (EditText) findViewById(R.id.editText);
String s = t.getText().toString();
String a = author.getText().toString();
if(s.equalsIgnoreCase("")){
Toast.makeText(this, "Enter the phone name first!", Toast.LENGTH_LONG);
} else {
Phone phone = new Phone(s, a);
db.addPhone(phone);
Log.d("phones", "data added");
t.setText("");
author.setText("");
adapt.add(phone);
adapt.notifyDataSetChanged();
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
private class MyAdapter extends ArrayAdapter<Phone>{
Context context;
List<Phone> phoneList = new ArrayList<Phone>();
int layoutResourceId;
public MyAdapter(Context context, int layoutResourceId, List<Phone> phoneList){
super(context, layoutResourceId, phoneList);
this.layoutResourceId = layoutResourceId;
this.phoneList = phoneList;
this.context = context;
}
@Override
public View getView(int position, View convertView, ViewGroup parent){
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View rowView = inflater.inflate(R.layout.list_inner_view, parent, false);
TextView textView = (TextView) convertView.findViewById(R.id.textBookView);
Phone current = phoneList.get(position);
textView.setText(current.getPhoneName() + " - " + current.getAuthor());
return rowView;
}
}
我对象的XML文件:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Large Text"
android:id="@+id/textBookView"
android:focusable="false"
android:focusableInTouchMode="false"/>
我忽略了什么吗?对不起,如果已经提出这个问题,但我找不到我的解决方案。
答案 0 :(得分:1)
将getView方法更改为:
@Override
public View getView(int position, View convertView, ViewGroup parent){
if(convertView == null)
{
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = inflater.inflate(R.layout.list_inner_view, parent, false);
}
TextView textView = (TextView) convertView.findViewById(R.id.textBookView);
Phone current = phoneList.get(position);
textView.setText(current.getPhoneName() + " - " + current.getAuthor());
return convertView;
}
如果可能的话,convertView是重用的旧视图。注意:在使用之前,应检查此视图是否为非null且类型是否合适。如果无法转换此视图以显示正确的数据,则此方法可以创建新视图。异构列表可以指定它们的视图类型数,以便此View始终是正确的类型(请参阅getViewTypeCount()和getItemViewType(int))。我从这里得到了这个http://developer.android.com/reference/android/widget/Adapter.html