我正在创建一个Android应用程序,我在对话框中使用ListView。我想在点击时更改项目的背景颜色,我已经在 setOnItemClickListener 的帮助下完成了这项工作。我将所有选定的值存储在ListArray中。我希望如果用户再次打开该diolog盒,它必须根据ListArray中的数据显示他已经选择的内容。确切的问题是,当我移回页面并离开对话框时,列表得到更新并且没有显示任何选择。
这是我显示所选项目的方式。 这是我以前用过的代码......
listJobs.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> a, View v, int position, long id) {
selectedJob = a.getItemAtPosition(position).toString();
if (!arraySelectedJobs.contains(selectedJob)) {
a.getChildAt(position).setBackgroundColor(YELLOW);
arraySelectedJobs.add(selectedJob);
Log.e("position", String.valueOf(position));
} else {
a.getChildAt(position).setBackgroundColor(Color.WHITE);
arraySelectedJobs.remove(selectedJob);
}
Log.e("data", arraySelectedJobs.toString());
}
});
我试图在用户再次打开该对话框时显示所选项目。
listJobs = (ListView) Jobs.findViewById(R.id.listJobs123456);
button_ok = (Button) Jobs.findViewById(R.id.ButtonOk);
button_ok.setOnClickListener(this);
jobListViewAdapter = new ArrayAdapter<>(this, android.R.layout.simple_list_item_1, arrayListJobs);
listJobs.setAdapter(jobListViewAdapter);
if(!arraySelectedJobs.isEmpty())
{
for(int i=0;i<arraySelectedJobs.size();i++)
{
try
{
int value = arrayListJobs.indexOf(arraySelectedJobs.get(i));
listJobs .getChildAt(value).setBackgroundColor(YELLOW);
}
catch(Exception ex)
{
Log.e("error",ex.toString());
}
}
}
我收到此错误
java.lang.NullPointerException:尝试调用虚方法'void 关于空对象引用的android.view.View.setBackgroundColor(int)'
如何解决这个问题。
答案 0 :(得分:1)
您需要为您的方法创建自定义列表视图,并在显示对话框时使用以下代码
final Dialog dialogOne = new Dialog(MainActivity.this);
dialogOne.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialogOne.setContentView(R.layout.dialog_xml);
CustomList adapter = new
CustomList(MainActivity.this,arraySelectedJobs);
list = (ListView) dialogOne.findViewById(R.id.list);
list.setAdapter(adapter);
list.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
parent.getChildAt(position).setBackgroundColor(Color.YELLOW);
arraySelectedJobs.add(String.valueOf(position));
}
});
dialogOne.show();
现在在自定义列表类中,您将返回特定列表行的视图 需要将以下代码写入getview方法
LayoutInflater inflater = context.getLayoutInflater();
View rowView = inflater.inflate(R.layout.list_single, null, true);
if (!arraySelectedJobs.isEmpty()) {
for (int i = 0; i < arraySelectedJobs.size(); i++) {
int j = Integer.parseInt(arraySelectedJobs.get(i));
if (position == j) {
rowView.setBackgroundColor(Color.YELLOW);
}
}
}