- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
没有明显模式的随机崩溃。当我打开 ListView 时,应用程序每隔几次(随机)崩溃一次并出现以下错误。有很多东西要学,如果这是一个非常明显的错误,请原谅我。
错误日志
W/dalvikvm( 9445): threadid=1: thread exiting with uncaught exception (group=0x40018578)
E/AndroidRuntime( 9445): FATAL EXCEPTION: main
E/AndroidRuntime( 9445): java.lang.IllegalStateException: The content of the adapter has changed but ListView did not receive a notification. Make sure the content of your adapter is not modified from a background thread, but only from the UI thread. [in ListView(2131361795, class android.widget.ListView) with Adapter(class gst.sies.popatt.LazyAdapter)]
E/AndroidRuntime( 9445): at android.widget.ListView.layoutChildren(ListView.java:1545)
E/AndroidRuntime( 9445): at android.widget.AbsListView.onLayout(AbsListView.java:1422)
E/AndroidRuntime( 9445): at android.view.View.layout(View.java:7175)
E/AndroidRuntime( 9445): at android.widget.RelativeLayout.onLayout(RelativeLayout.java:912)
E/AndroidRuntime( 9445): at android.view.View.layout(View.java:7175)
E/AndroidRuntime( 9445): at android.widget.FrameLayout.onLayout(FrameLayout.java:338)
E/AndroidRuntime( 9445): at android.view.View.layout(View.java:7175)
E/AndroidRuntime( 9445): at android.widget.FrameLayout.onLayout(FrameLayout.java:338)
E/AndroidRuntime( 9445): at android.view.View.layout(View.java:7175)
E/AndroidRuntime( 9445): at android.view.ViewRoot.performTraversals(ViewRoot.java:1146)
E/AndroidRuntime( 9445): at android.view.ViewRoot.handleMessage(ViewRoot.java:1865)
E/AndroidRuntime( 9445): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 9445): at android.os.Looper.loop(Looper.java:130)
E/AndroidRuntime( 9445): at android.app.ActivityThread.main(ActivityThread.java:3687)
E/AndroidRuntime( 9445): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 9445): at java.lang.reflect.Method.invoke(Method.java:507)
E/AndroidRuntime( 9445): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:867)
E/AndroidRuntime( 9445): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:625)
E/AndroidRuntime( 9445): at dalvik.system.NativeStart.main(Native Method)
D/dalvikvm( 9445): GC_CONCURRENT freed 473K, 50% free 3063K/6023K, external 714K/1025K, paused 4ms+5ms
E/liblog ( 1475): failed to call dumpstate
E/ ( 1475): Dumpstate > /data/log/dumpstate_app_error
D/InputReader( 1475): Input event: value=1
D/InputReader( 1475): Input event: value=0
D/InputReader( 1475): Input event: value=1
代码
package gst.sies.popatt;
import java.io.File;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.HashMap;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.res.Resources;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.graphics.Typeface;
import android.os.AsyncTask;
import android.os.Build;
import android.os.Bundle;
import android.os.Environment;
import android.view.View;
import android.view.Window;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.TextView;
public class GalleryActivity extends Activity
{
static final String KEY_ID = "id";
static final String KEY_TITLE = "title";
static final String KEY_THUMB_URL = "thumb_url";
public Typeface myTypeface;
private ArrayList<HashMap<String, String>> nomineeList;
private ListView n_list;
private Intent back_button;
private String[] category;
private LazyAdapter adapter;
private int category_index;
private SQLiteDatabase db;
private SharedPreferences prefs;
private TextView voted;
private UserLoginTask getNominees;
private ImageView iv;
private boolean date;
int i=0;
@SuppressLint("SdCardPath")
@Override
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
String title = getIntent().getStringExtra("title");
if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.ICE_CREAM_SANDWICH)
{
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
}
else
this.setTitle(title);
setContentView(R.layout.activity_gallery);
myTypeface = Typeface.createFromAsset(
this.getAssets(),
"ROBOTO.TTF");
prefs= new ObscuredSharedPreferences(
GalleryActivity.this, GalleryActivity.this.getSharedPreferences("gst.sies.popatt", Context.MODE_PRIVATE) );
back_button= new Intent (GalleryActivity.this, CategoriesActivity.class);
if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.ICE_CREAM_SANDWICH)
voted = (TextView) findViewById(R.id.textView3);
else
voted = (TextView) findViewById(R.id.TextView_14);
iv= (ImageView) findViewById(R.id.voted_thumbnail);
category_index = getIntent().getIntExtra("category_index", 0);
if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.ICE_CREAM_SANDWICH)
{
TextView tv = (TextView) findViewById(R.id.textView1);
tv.setTypeface(myTypeface);
tv.setText(title);
voted.setTypeface(myTypeface);
}
if(prefs.getString(Integer.toString(category_index), "NA").equals("NA"))
voted.setText("Voted for: No One");
else
{
iv.setImageResource(R.drawable.radio_checked);
//voted.setText("Voted for: "+ prefs.getString(Integer.toString(category_index), "No One"));
voted.setText("can't do it yet ;)");
voted.setSelected(true);
}
Calendar now = Calendar.getInstance();
if(now.get(Calendar.DATE) >= 1 && now.get(Calendar.DATE) <= 18)
date = true;
else
date = false;
nomineeList = new ArrayList<HashMap<String, String>>();
File nom_db = new File (Environment.getExternalStorageDirectory()+"/Android/data/gst.sies.popatt/databases/nominees.db");
db = SQLiteDatabase.openOrCreateDatabase(nom_db, null);
getNominees = new UserLoginTask();
getNominees.execute((Void) null);
n_list = (ListView) findViewById(R.id.nominee_list);
adapter=new LazyAdapter(this, nomineeList);
adapter.notifyDataSetChanged();
n_list.setAdapter(adapter);
n_list.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position,
long id) {
String votedOne = (String) ((TextView) view.findViewById(R.id.title)).getText();
prefs.edit().putString(Integer.toString(category_index), votedOne).commit();
if(date)
voted.setText("Voted for: "+ votedOne);
else
voted.setText("can't do it yet ;)");
voted.setSelected(true);
iv.setImageResource(R.drawable.radio_checked);
}
});
}
@Override
public void onBackPressed()
{
startActivity(back_button);
finish();
}
public boolean isTableExists(String tableName) {
Cursor cursor = db.rawQuery("select DISTINCT tbl_name from sqlite_master where tbl_name = '"+tableName+"'", null);
if(cursor!=null) {
if(cursor.getCount()>0) {
cursor.close();
return true;
}
cursor.close();
}
return false;
}
public class UserLoginTask extends AsyncTask<Void, Void, Boolean> {
@Override
protected Boolean doInBackground(Void... params) {
Resources res = getResources();
category = res.getStringArray(R.array.category_list_short);
if(isTableExists(category[category_index]) && date)
{
Cursor c = db.rawQuery("SELECT * FROM "+category[category_index]+" WHERE name IS NOT NULL", null);
if(c.moveToFirst())
{
while(!c.isAfterLast())
{
HashMap<String, String> map = new HashMap<String, String>();
map.put(KEY_ID, c.getString(0));
map.put(KEY_TITLE, c.getString(c.getColumnIndex("name")));
map.put(KEY_THUMB_URL, c.getString(c.getColumnIndex("url")));
nomineeList.add(map);
c.moveToNext();
}
c.close();
return true;
}
}
else
{
for (int i = 0; i < 10 ; i++) {
HashMap<String, String> map = new HashMap<String, String>();
map.put(KEY_ID, Integer.toString(i));
map.put(KEY_TITLE, "No Name Available");
map.put(KEY_THUMB_URL, "https://fbcdn-sphotos-d-a.akamaihd.net/hphotos-ak-snc6/5939_10151499921443518_604230176_s.jpg");
nomineeList.add(map);
}
return true;
}
return true;
}
@Override
protected void onPostExecute(Boolean success) {
super.onPostExecute(success);
runOnUiThread(new Runnable() {
public void run() {
db.close();
adapter.notifyDataSetChanged();
}
});
}
@Override
protected void onCancelled() {
}
@Override
protected void onPreExecute()
{ }
}
}
适配器类
package gst.sies.popatt;
import java.util.ArrayList;
import java.util.HashMap;
import android.app.Activity;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.TextView;
public class LazyAdapter extends BaseAdapter {
private Activity activity;
private ArrayList<HashMap<String, String>> data;
private static LayoutInflater inflater=null;
public ImageLoader imageLoader;
public LazyAdapter(Activity a, ArrayList<HashMap<String, String>> d) {
activity = a;
data=d;
inflater = (LayoutInflater)activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
imageLoader=new ImageLoader(activity.getApplicationContext());
//rbState = new boolean [100];
}
public int getCount() {
return data.size();
}
public Object getItem(int position) {
return position;
}
public long getItemId(int position) {
return position;
}
public View getView(int position, View convertView, ViewGroup parent) {
View vi=convertView;
if(convertView==null)
vi = inflater.inflate(R.layout.rowview, null);
TextView title = (TextView)vi.findViewById(R.id.title); // title
ImageView thumb_image=(ImageView)vi.findViewById(R.id.list_image); // thumb image
GalleryActivity gl = new GalleryActivity();
title.setTypeface(gl.myTypeface);
HashMap<String, String> nominee = new HashMap<String, String>();
nominee = data.get(position);
title.setText(nominee.get(GalleryActivity.KEY_TITLE));
imageLoader.DisplayImage(nominee.get(GalleryActivity.KEY_THUMB_URL),R.drawable.ic_launcher, thumb_image);
return vi;
}
}
老实说,我没有尝试太多,因为我不知道可能是什么问题。
编辑:更新代码
package gst.sies.popatt;
import java.io.File;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.HashMap;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.res.Resources;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.graphics.Typeface;
import android.os.AsyncTask;
import android.os.Build;
import android.os.Bundle;
import android.os.Environment;
import android.view.View;
import android.view.Window;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.TextView;
public class GalleryActivity extends Activity
{
static final String KEY_ID = "id";
static final String KEY_TITLE = "title";
static final String KEY_THUMB_URL = "thumb_url";
public Typeface myTypeface;
private ArrayList<HashMap<String, String>> nomineeList;
private ListView n_list;
private Intent back_button;
private String[] category;
private LazyAdapter adapter;
private int category_index;
private SQLiteDatabase db;
private SharedPreferences prefs;
private TextView voted;
private UserLoginTask getNominees;
private ImageView iv;
private boolean date;
int i=0;
@SuppressLint("SdCardPath")
@Override
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
String title = getIntent().getStringExtra("title");
if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.ICE_CREAM_SANDWICH)
{
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
}
else
this.setTitle(title);
setContentView(R.layout.activity_gallery);
myTypeface = Typeface.createFromAsset(
this.getAssets(),
"ROBOTO.TTF");
prefs= new ObscuredSharedPreferences(
GalleryActivity.this, GalleryActivity.this.getSharedPreferences("gst.sies.popatt", Context.MODE_PRIVATE) );
back_button= new Intent (GalleryActivity.this, CategoriesActivity.class);
if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.ICE_CREAM_SANDWICH)
voted = (TextView) findViewById(R.id.textView3);
else
voted = (TextView) findViewById(R.id.TextView_14);
iv= (ImageView) findViewById(R.id.voted_thumbnail);
category_index = getIntent().getIntExtra("category_index", 0);
if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.ICE_CREAM_SANDWICH)
{
TextView tv = (TextView) findViewById(R.id.textView1);
tv.setTypeface(myTypeface);
tv.setText(title);
voted.setTypeface(myTypeface);
}
if(prefs.getString(Integer.toString(category_index), "NA").equals("NA"))
voted.setText("Voted for: No One");
else
{
iv.setImageResource(R.drawable.radio_checked);
//voted.setText("Voted for: "+ prefs.getString(Integer.toString(category_index), "No One"));
voted.setText("can't do it yet ;)");
voted.setSelected(true);
}
Calendar now = Calendar.getInstance();
if(now.get(Calendar.DATE) >= 1 && now.get(Calendar.DATE) <= 18)
date = true;
else
date = false;
nomineeList = new ArrayList<HashMap<String, String>>();
File nom_db = new File (Environment.getExternalStorageDirectory()+"/Android/data/gst.sies.popatt/databases/nominees.db");
db = SQLiteDatabase.openOrCreateDatabase(nom_db, null);
getNominees = new UserLoginTask();
getNominees.execute((Void) null);
n_list = (ListView) findViewById(R.id.nominee_list);
adapter=new LazyAdapter(this, nomineeList);
n_list.setAdapter(adapter);
adapter.notifyDataSetChanged();
n_list.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position,
long id) {
String votedOne = (String) ((TextView) view.findViewById(R.id.title)).getText();
prefs.edit().putString(Integer.toString(category_index), votedOne).commit();
if(date)
voted.setText("Voted for: "+ votedOne);
else
voted.setText("can't do it yet ;)");
voted.setSelected(true);
iv.setImageResource(R.drawable.radio_checked);
}
});
}
@Override
public void onBackPressed()
{
startActivity(back_button);
finish();
}
public boolean isTableExists(String tableName) {
Cursor cursor = db.rawQuery("select DISTINCT tbl_name from sqlite_master where tbl_name = '"+tableName+"'", null);
if(cursor!=null) {
if(cursor.getCount()>0) {
cursor.close();
return true;
}
cursor.close();
}
return false;
}
public class UserLoginTask extends AsyncTask<Void, Void, Boolean> {
@Override
protected Boolean doInBackground(Void... params) {
Resources res = getResources();
category = res.getStringArray(R.array.category_list_short);
if(isTableExists(category[category_index]) && date)
{
Cursor c = db.rawQuery("SELECT * FROM "+category[category_index]+" WHERE name IS NOT NULL", null);
if(c.moveToFirst())
{
while(!c.isAfterLast())
{
HashMap<String, String> map = new HashMap<String, String>();
map.put(KEY_ID, c.getString(0));
map.put(KEY_TITLE, c.getString(c.getColumnIndex("name")));
map.put(KEY_THUMB_URL, c.getString(c.getColumnIndex("url")));
nomineeList.add(map);
c.moveToNext();
}
c.close();
return true;
}
}
else
{
for (int i = 0; i < 10 ; i++) {
HashMap<String, String> map = new HashMap<String, String>();
map.put(KEY_ID, Integer.toString(i));
map.put(KEY_TITLE, "No Name Available");
map.put(KEY_THUMB_URL, "https://fbcdn-sphotos-d-a.akamaihd.net/hphotos-ak-snc6/5939_10151499921443518_604230176_s.jpg");
nomineeList.add(map);
}
return true;
}
return true;
}
@Override
protected void onPostExecute(Boolean success) {
super.onPostExecute(success);
db.close();
}
@Override
protected void onCancelled() {
}
@Override
protected void onPreExecute()
{ }
}
}
最佳答案
将适配器设置为 ListView 后调用notifyDataSetChanged()即
adapter=new LazyAdapter(this, nomineeList)
n_list.setAdapter(adapter);
adapter.notifyDataSetChanged();
因为您正在调用 notifyDataSetChanged() 即使您的 LazyAdapter 数据没有变化
adapter=new LazyAdapter(this, nomineeList);
adapter.notifyDataSetChanged();
notifyDataSetChanged()
- 将通知 ListView 适配器中的数据已更改的通知。当您尝试在尚未绑定(bind)到 listView 的 Adapter 上调用 notifyDataSetChanged() 时,将抛出此异常。
java.lang.IllegalStateException: The content of the adapter has changed but ListView did not receive a notification. Make sure the content of your adapter is not modified from a background thread, but only from the UI thread.
关于android - 由于 notifyDataSetChanged() 问题随机崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15730337/
我有一段代码看起来像这样: void update_clock(uint8_t *time_array) { time_t time = *((time_t *) &time_array[0]
应用程序崩溃了 :( 请帮助我.. 在这方面失败了。我找不到错误?该应用程序可以连接到 iTunesConnect 但它会出错。 谁能根据下面的崩溃报告判断问题出在哪里? share_with_app
小二是新来的实习生,作为技术 leader,我给他安排了一个非常简单的练手任务,把前端 markdown 编辑器里上传的图片保存到服务器端,结果他真的就把图片直接保存到了服务器上,这下可把我气坏了,就
我正在创建一个函数,它将目录路径作为参数传递,或者如果它留空,则提示用户输入。 我已经设置了我的 PATH_MAX=100 和 if 语句来检查 if ((strlen(folder path) +
我已将“arial.ttf”文件(从我的/Windows/Fonts 文件夹中获取)加载到内存中,但是将其传递到 FT_New_Memory_Face 时会崩溃(在 FT_Open_Face 中的某处
我正在尝试在我的计算机上的两个控制台之间进行 rtsp 流。 在控制台 1 上,我有: ffmpeg -rtbufsize 100M -re -f dshow -s 320x240 -i video=
我正在尝试使用 scio_beast在一个项目中。我知道它还没有完成,但这并不重要。我已经设法让它工作得很好。 我现在正在尝试连接到 CloudFlare 后面的服务器,我知道我需要 SNI 才能工作
我有一个带有关联宏的下拉列表,如下所示: Sub Drop() If Range("Hidden1!A1") = "1" Then Sheets("Sheet1").Se
我对 bash 很陌生。我要做的就是运行这个nvvp -vm /usr/lib64/jvm/jre-1.8.0/bin/java无需记住最后的路径。我认为 instafix 就是这样做...... n
我在 Windows 上使用 XAMPP 已经两年左右了,它运行完美,没有崩溃没有问题。 (直到四个月前。) 大约四个月前,我们将服务器/系统升级到了更快的规范。 这是旧规范的内容 - Windows
我面临着一个非常烦人的 android 崩溃,它发生在大约 1% 的 PRODUCTION session 中,应用程序始终在后台运行。 Fatal Exception: android.app.Re
尝试使用下面的函数: public void createObjectType() { try { mCloudDB.createObjectType(ObjectTypeIn
由于我正在进行的一个项目,我在 CF11 管理员中弄乱了类路径,我设法使服务器崩溃,以至于我唯一得到的是一个漂亮的蓝屏和 500 错误.我已经检查了日志,我会把我能做的贴在帖子的底部,但我希望有人会启
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 10 个月前关闭。 Improve
我最近从 xcode 3.x 更新到 4.2,当我在 4.2 中运行应用程序时,我遇到了核心数据问题。我还更新到了 iOS 5,所以问题可能就在那里,我不太确定。 这些应用程序在 3.x 中运行良好,
我是一个相对较新的 iPhone 应用程序开发人员,所以我的知识有点粗略,所以如果这是一个微不足道的问题,请原谅我。 我有一个导航应用程序,它通过在navigationController对象上调用p
if ([MFMailComposeViewController canSendMail]) { MFMailComposeViewController *mailViewController
你能帮我吗? 我正在设置 UILocalNotification,当我尝试设置其 userInfo 字典时,它崩溃了。 fetchedObjects 包含 88 个对象。 这是代码: NSDi
为什么我的代码中突然出现 NSFastEnumeration Mutation Handler 崩溃。我很茫然为什么会突然出现这个崩溃以及如何解决它。 最佳答案 崩溃错误: **** 由于未捕获的异常
当我从表中删除行时,我的应用程序崩溃了。这是我检测到错误和堆栈跟踪的来源。谢谢! //delete row from database - (void)tableView:(UITableView *
我是一名优秀的程序员,十分优秀!