- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个 ListFragment
,其数据由自定义适配器填充(在我的例子中是 SimpleAdapter
)。我在扩展 ListFragment
的类中使用 notifyDataSetChanged()
时遇到问题。经过大量的环顾四周和几个(有用的)Stack Overflow 帖子之后:
listview not updating with notifydatasetchanged() call
Android ListView not refreshing after notifyDataSetChanged
adapters notifyDataSetChanged does not work
notifyDataSetChanged not working
ListView does not update when calling notifyDataSetChanged from a BaseAdapter
我知道一个松散(并且非常不推荐)的解决方法是使用 setListAdapter()
重新设置您的适配器。但是我现在也面临着这方面的问题。
文档,http://developer.android.com/reference/android/app/ListFragment.html#setListAdapter(android.widget.ListAdapter) , 提到 setListAdapter()
Provides the cursor for the list view.
但是我还有一些疑问。
Q1。使用 setListAdapter() 多次初始化适配器是否指向同一个适配器实例?
Q2。当使用 setListAdapter() 多次设置适配器时调用 getListAdapter() 然后调用 notifyDataSetChanged() 时实际发生了什么?
Q3。这个问题是基于 Q2 的假设 - 当 notifyDataSetChanged()
在多次设置适配器时被调用时,那些适配器实例中的哪一个(这部分是假设),如果它们存在'实际上是被通知更改?
我是 Android 的初学者,我相信有很多细微差别我不明白。如果你能澄清这些问题,我将不胜感激。也非常感谢您的宝贵时间。
最佳答案
Q1。是否使用 setListAdapter()“指向”多次初始化适配器 相同的适配器实例?
答案:
初始化适配器将仅指向您使用 setListAdapter
设置的最后一个实例。
Q2. What actually happens when a call is made to getListAdapter() and then to
notifyDataSetChanged() when an adapter has been set multiple times using
setListAdapter() ?
答案:
无论您初始化了多少个适配器,只有最后一个实例将使用 getListAdapter()
检索。当您使用 notifyDataSetChanged()
只有使用 getListAdapter()
检索到的最后一个实例才会被刷新,即;最后一个实例将被重新加载(通过调用 getView
)。
Q3. This question is based on an assumption from Q2- when notifyDataSetChanged() is
called when an adapter is set multiple times, which of those adapter instances (this
part is the assumption), if they exist' is actually being notified for change ?
Ans:
上面的答案包含对此的解释。
关于Android - setListAdapter() + notifyDataSetChanged() 说明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24424384/
import android.app.Activity; import android.os.Bundle; import android.app.ListActivity; import andro
我正在尝试构建 android 应用程序,它似乎将 Force Close 保持在同一位置 (setListAdapter/SimpleCursorAdapter) 现在不管我做什么。这是 DBAda
我有一个 Activity,其布局包含一个 DrawerLayout(来自支持的库)和一个 FrameLayout + ListView。在我的 FrameLayout 中,我有一个 ListFrag
这里我有一个奇怪的问题,有一种方法可以刷新我的 ListView : setListAdaptor(); 每当我从我的服务中调用此方法(以正确的方式)时,每当存在更改以更新列表时: @Overr
我尝试在 fragment 中显示 listView。但是方法 setListAdapter - 没有解决。我认为,我必须获取 listView 的 id (android.R.id.list);然后
在我的应用程序中,4 个 fragment 附加到一个 Activity 类。在我的 Activity 类中,我使用这个设置了根内容 View setContentView(R.layout.frag
我的 ListActivity 有问题,我使用一个线程来显示 ProgressDialog,其中获取所有已安装应用程序的列表。我把它变成一个列表适配器,然后我想设置 Activity 的列表适配器,但
正如标题所述,我在将我的数据从数据库链接到 ListView 时遇到了一些问题,问题在于适配器将仅设置返回的最后一行,而不是数据库表中的每一行。 我正在努力实现的一个例子: 餐 table 动物:猴猫
嗨,我正在尝试让我的 ListView 在我的 MainActivity 中使用 json。我的 onPostExecute(string result) 方法 出现错误。它给我以下错误:“MainA
我不知道发生了什么我首先在扩展 Activity 的类中发布了它。但即使将其更改为 ListActivity 后它仍然不起作用。我会把它简化到我认为问题所在的地方。 public class Pa
我正在开发一个应用程序,该应用程序(在 AsyncTask 中)执行对远程服务器的查询以获取 JSON 字符串。为了在我的 ListView 上显示数据,我扩展了一个 ArrayAdapter。 当我
我有一个 ListFragment,其数据由自定义适配器填充(在我的例子中是 SimpleAdapter)。我在扩展 ListFragment 的类中使用 notifyDataSetChanged()
我的程序具有 listArray 功能和 extends AppCompatActivity 但我的代码有错误 我的代码 新闻 Activity public class NewsActivity e
list_item.xml:http://pastebin.com/bn56L3NN 在 onCreate() 和创建 Comm 对象之后发生的情况是,我收到一条“已建立连接”消息,该消息在另一个线程
protected void onPostExecute(String file_url) { // dismiss the dialog after getting all prod
我有一个 Activity 类,其中包含一个扩展 AsyncTask 的内部 protected 类。当我单击一个按钮然后显示基于该数据的列表时,我试图让 AsyncTask 在后台加载数据。 这是我
我有一个 ListView ,它只是这样填充的: setListAdapter(new ArrayAdapter(this, android.R.layout.simp
我在 MainAvtivity 中有以下代码: private DBOperations DataDBoperation; @Override protected void onCre
当我尝试使用标题中列出的任一方法(getListView() 和 setListAdapter())时,我收到一条错误消息,指出这些方法无法解析。 这是我的代码: public void onRes
我制作了一个 ListView 来显示来自 url 的已解析 JSON 数据!相同的代码在没有 fragment 的情况下工作正常,但有 fragment 时 setListAdapter 不工作!我
我是一名优秀的程序员,十分优秀!