在我的Android应用程序中.i有gridview。在对网格视图的一个选择项执行操作后,我想设置该项的可见性false.how这样做?
代码在下面 -
public void onItemClick(AdapterView<?> arg0, View arg1, int no,long lg) {
// TODO Auto-generated method stub
AlertDialog.Builder alert = new AlertDialog.Builder(MainActivity.this);
id=no;
alert.setTitle("Title");
alert.setMessage("Message");
alert.setIcon(flag[no]);
// Set an EditText view to get user input
final EditText input = new EditText(MainActivity.this);
alert.setView(input);
alert.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
String value = input.getText().toString();
// Do something with value!
System.out.println("mmmm"+value);
if(value.equalsIgnoreCase(country[id])){
// here i want to set item visibility..
}
else
{}
}
});
alert.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
// Canceled.
}
});
alert.show();
}
});
答案 0 :(得分:0)
您无法隐藏gridView中的单个项目
您唯一能做的就是更改传递给gridView适配器的项目列表。您可以从列表中删除要隐藏的项目,并调用notifyDataSetChanged以使gridView反映您的更改。