GridView使用自定义adapter,用notifyDataSetChanged不刷新的问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GridView使用自定义adapter,用notifyDataSetChanged不刷新的问题相关的知识,希望对你有一定的参考价值。
adapter自己继承子BaseAdapter,用了notifyDatasetChange后,只回调了getCount(),并返回了正确的数量,但是没有调用View getView(int position, View convertView, ViewGroup parent),导致界面上还是老的画面,原始数据保证是正确的。
终于找到真正的原因了,fragment里的onCreateView返回的view重复使用的问题,本来在destroyview里从parent view 里remove了下这个view,看来不能对android好点啊,该destroy的view就得destroy了,不能保持到下次使用。 参考技术A 重新绑定一次 参考技术B adapter.notifyDataSetChanged();就是刷新列表的意思,调用这行代码后,adapter会重新调用一次adapter的getView方法,来重新绘制列表,因此刷新列表只能刷新所有,不能单个,建议使用自定义的Adapter,SimpleAdapter 使用太麻烦,提供的api太少,数据处理也困难。 参考技术C 请问专家在新疆阿克苏枣树施用什么钾肥更好?急急,急,GridView编辑取消按钮自定义控件
这个需求来自于论坛一位坛友提出的问题,他希望能够自定义编辑、取消按钮,而不是用GridView自带的编辑和取消。这里只当抛砖引玉,提出一些解决方案。
首先在页面前台设置一个GridView。
<div> <asp:GridView ID="GridView1" runat="server"> <Columns> <asp:TemplateField HeaderText="操作"> <ItemTemplate> <table> <td align="center"> <asp:Button ID="Edit" runat="server" Text="编辑" Visible="true" OnClick="Edit_Click" CommandArgument="<%# Container.DataItemIndex %>" /> <asp:Button ID="Cancel" runat="server" Text="取消" Visible="false" OnClick="Cancel_Click" /> </td> </table> </ItemTemplate> </asp:TemplateField> </Columns> </asp:GridView> </div>
这里注意,我通过给按钮Edit的CommandArgument属性设置一个DataItemIndex值,这个值就是默认行的索引值。通过这个参数可以获取GridView的行号。
然后我在首页加载的时候绑定数据源。
protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { DataTable dt = new DataTable(); dt.Columns.Add("id", typeof(int)); dt.Columns.Add("name", typeof(string)); dt.Rows.Add(10001, "guwei40371"); dt.Rows.Add(10002, "guwei40372"); this.GridView1.DataSource = dt.DefaultView; this.GridView1.DataBind(); } }
这里很简单,就是绑定了两列,给GridView绑定上。
接下来两个按钮事件:
protected void Edit_Click(object sender, EventArgs e) { int index = Convert.ToInt32((sender as Button).CommandArgument);//获取到行号 Button button = this.GridView1.Rows[index].FindControl("Cancel") as Button;//找到当前行的Cancel按钮 button.Visible = true;//设置按钮的Visible为true } protected void Cancel_Click(object sender, EventArgs e) { int row = ((GridViewRow)((Button)sender).NamingContainer).RowIndex;//通过按钮直接找到命名容器(GridViewRow)的RowIndex Response.Write("<script>alert(‘" + this.GridView1.Rows[row].Cells[1].Text + "‘)</script>");//直接弹出当前行单元格索引为1的内容 }
具体代码的含义,上面已经注释明了,这里不重复。
最后看下执行的效果。
当点击编辑按钮的时候,显示取消按钮。
当点击取消按钮的时候,弹出10001。
以上是关于GridView使用自定义adapter,用notifyDataSetChanged不刷新的问题的主要内容,如果未能解决你的问题,请参考以下文章