【问题标题】:ListView doesn't appear in the MainActivty of my app (An image attached)ListView 没有出现在我的应用程序的 MainActivty 中(附图片)
【发布时间】:2015-06-13 00:32:37
【问题描述】:

在我的 Android 应用中保存便笺后,便笺的便笺(或 ListView)不会出现在 MainActivity 中。我的应用的 MainActivity 类是:

package com.twitter.i_droidi.mynotes;

import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.ContextMenu;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.Toast;
import java.util.List;

public class MainActivity extends ActionBarActivity implements AdapterView.OnItemClickListener {

    ListView lv;
    NotesDataSource nDS;
    List<NotesModel> notesList;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        nDS = new NotesDataSource(this);
        lv = (ListView) findViewById(R.id.lv);

        nDS.open();
        notesList = nDS.getAllNotes();
        nDS.close();

        String[] notes = new String[notesList.size()];

        for (int i = 0; i < notesList.size(); i++) {
            notes[i] = notesList.get(i).getTitle();
        }

        ArrayAdapter<String> adapter = new ArrayAdapter<String>(MainActivity.this, android.R.layout.simple_list_item_1,
                android.R.id.text1, notes);
        lv.setAdapter(adapter);

        registerForContextMenu(lv);
        lv.setOnItemClickListener(this);
    }

    @Override
    public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
        Intent nView = new Intent(this, Second.class);
        nView.putExtra("id", notesList.get(position).getId()); // Check...!!!
        startActivity(nView);
    }

    @Override
    public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) {
        MenuInflater inflater = getMenuInflater();
        inflater.inflate(R.menu.menu_delete, menu);
        super.onCreateContextMenu(menu, v, menuInfo);
    }

    @Override
    public boolean onContextItemSelected(MenuItem item) {
        switch (item.getItemId()) {
            case R.id.delete:
                nDS.open();
                nDS.deleteNote(lv.getId()); // Check...!!!
                nDS.close();
                Toast nDelete = Toast.makeText(this, "Deleted.", Toast.LENGTH_LONG);
                nDelete.show();
                return true;
        }
        return super.onContextItemSelected(item);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        MenuInflater inflater = getMenuInflater();
        inflater.inflate(R.menu.menu_main, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        switch (item.getItemId()) {
            case R.id.mainMenuNewNote:
                Intent nNote = new Intent(this, Second.class);
                startActivity(nNote);
                return true;

            case R.id.mainMenuAbout:
                AlertDialog.Builder aboutDialog = new AlertDialog.Builder(this);
                aboutDialog.setTitle("About the app");
                aboutDialog.setMessage("The Simplest app for notes!\n\n" +
                        "Developed by: Abdulaziz\n" +
                        "Twitter: @i_Droidi\n" +
                        "Telegram: MrGlitch\n\n" +
                        "Special Thanks to who tested the app before upload it on Play Store and to who use it now! :)");
                aboutDialog.setIcon(R.mipmap.ic_launcher);
                aboutDialog.setPositiveButton("OK", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface aboutDialog, int witch) {
                        // Do Not Do Anything.
                    }
                });

                aboutDialog.show();
                return true;

            case R.id.mainMenuExit:
                AlertDialog.Builder exDialog = new AlertDialog.Builder(this);
                exDialog.setTitle("Exit?");
                exDialog.setMessage("Are you sure to exit?");
                exDialog.setIcon(R.mipmap.ic_launcher);
                exDialog.setNegativeButton("Yes", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface exDialog, int which) {
                        finish();
                    }
                });
                exDialog.setPositiveButton("No", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface exDialog, int which) {
                        // Do Not Do Anything.
                    }
                });

                exDialog.show();
                return true;
        }
        return super.onOptionsItemSelected(item);
    }
}

我的应用的 activity_main(xml/布局文件)是:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <ListView
        android:id="@+id/lv"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"></ListView>

</LinearLayout>

我的应用的二等是:

package com.twitter.i_droidi.mynotes;

import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.widget.EditText;
import android.widget.Toast;

public class Second extends ActionBarActivity {

    NotesDataSource nDS;
    EditText noteTitle;
    EditText noteBody;
    int id;
    DB db;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.second);

        Intent in = getIntent();
        id = in.getIntExtra("id", 0);

        noteTitle = (EditText) findViewById(R.id.note_title);
        noteBody = (EditText) findViewById(R.id.note);
        nDS = new NotesDataSource(this);

        nDS.open();
        NotesModel note = nDS.getNote(id);
        nDS.close();

        noteTitle.setText(note.getTitle());
        noteBody.setText(note.getBody());
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        MenuInflater inflater = getMenuInflater();
        inflater.inflate(R.menu.menu_second, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        switch (item.getItemId()) {
            case R.id.secondMenuSave:
                if (!noteTitle.getText().toString().isEmpty() && !noteBody.getText().toString().isEmpty()) {
                    nDS.open();
                    nDS.updateNote(id, noteTitle.getText().toString(), noteBody.getText().toString());
                    nDS.close();
                    Toast nSave = Toast.makeText(this, "Saved.", Toast.LENGTH_LONG);
                    nSave.show();
                    finish();
                } else {
                    Toast notSave = Toast.makeText(this, "The title and content of the note CANNOT be empty!", Toast.LENGTH_LONG);
                    notSave.show();
                }
                return true;

            case R.id.secondMenuBack:
                AlertDialog.Builder baDialog = new AlertDialog.Builder(this);
                baDialog.setTitle("Back?");
                baDialog.setMessage("Do you want to back to the main page before saving the note?");
                baDialog.setIcon(R.mipmap.ic_launcher);
                baDialog.setNegativeButton("Yes", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface baDialog, int which) {
                        finish();
                    }
                });
                baDialog.setPositiveButton("No", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface baDialog, int which) {
                        // Do Not Do Anything.
                    }
                });

                baDialog.show();
                return true;
        }
        return super.onOptionsItemSelected(item);
    }
}

我的应用的 NotesDataSource 类是:

package com.twitter.i_droidi.mynotes;

import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.util.Log;
import java.util.ArrayList;
import java.util.List;

public class NotesDataSource {

    DB myDB;
    SQLiteDatabase sql;

    String[] getAllColumns = new String[]{DB.ID, DB.TITLE, DB.BODY};

    public NotesDataSource(Context context) {
        myDB = new DB(context);
    }

    public void open() {
        try {
            sql = myDB.getWritableDatabase();
        } catch (Exception ex) {
            Log.d("Error in your database!", ex.getMessage());
        }
    }

    public void close() {
        sql.close();
    }

    public void createNote(String title, String body) {
        ContentValues note = new ContentValues();
        note.put(myDB.TITLE, title);
        note.put(myDB.BODY, body);
        sql.insert(myDB.TABLE_NAME, null, note);
    }

    public NotesModel getNote(int id) {
        NotesModel note = new NotesModel();

        Cursor cursor = sql.rawQuery("SELECT * FROM " + DB.TABLE_NAME + " WHERE " + DB.ID + " = ?", new String[]{id + ""});

        if (cursor.getCount() > 0) {
            cursor.moveToFirst();
            note.setId(cursor.getInt(0));
            note.setTitle(cursor.getString(1));
            note.setBody(cursor.getString(2));
            cursor.close();
        }
        return note;
    }

    public void updateNote(int id, String title, String body) {
        ContentValues note = new ContentValues();
        note.put(myDB.TITLE, title);
        note.put(myDB.BODY, body);
        sql.update(myDB.TABLE_NAME, note, myDB.ID + " = " + id, null);
    }

    public void deleteNote(Object id) {
        sql.delete(myDB.TABLE_NAME, myDB.ID + " = " + id, null);
    }

    public List<NotesModel> getAllNotes() {
        List<NotesModel> notesList = new ArrayList<NotesModel>();

        Cursor cursor = sql.query(myDB.TABLE_NAME, getAllColumns, null, null, null, null, null);
        cursor.moveToFirst();

        while (!cursor.isAfterLast()) {
            NotesModel notes = new NotesModel();
            notes.setId(cursor.getInt(0));
            notes.setTitle(cursor.getString(1));
            notes.setBody(cursor.getString(2));

            notesList.add(notes);
            cursor.moveToNext();
        }

        cursor.close();
        return notesList;
    }
}

我的应用的DB类是:

package com.twitter.i_droidi.mynotes;

import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;

public class DB extends SQLiteOpenHelper {

    private static final String DB_NAME = "MyNotes";
    private static final int DB_VERSION = 1;

    public static final String TABLE_NAME = "MyNotes";
    public static final String ID = "id";
    public static final String TITLE = "title";
    public static final String BODY = "body";

    private static final String DB_CREATE = "create table " + TABLE_NAME + " (" + ID + " integer primary key autoincrement, " +
            TITLE + " text not null, " + BODY + " text not null)";

    public DB(Context context) {
        super(context, DB_NAME, null, DB_VERSION);
    }

    @Override
    public void onCreate(SQLiteDatabase db) {
        db.execSQL(DB_CREATE);
    }

    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        db.execSQL("DROP TABLE IF EXISTS " + TABLE_NAME);
        onCreate(db);
    }
}

我的应用 (MainActivity) 的屏幕截图,在保存笔记后(没有显示!):

我该如何解决这个问题?!

或者任何人都可以编写正确的代码?!

谢谢你帮助我。

【问题讨论】:

  • 我不确定我是否完全理解发生了什么,但我认为您需要在添加注释后在 listview 适配器上调用 notifyDataSetChanged()
  • 好的,让我看看我是否明白。您在笔记列表中输入/添加笔记。然后当你完成并且它被“保存”,并且你返回到主屏幕时,笔记不在那里。那是对的吗?它在你的笔记中吗(notes[i] = notesList.get(i).getTitle();)?你在那里看到了吗?如果是这样,那么我认为它仍然可以回到简单地使用新数据集(notes [])更新列表视图适配器。将其保存到列表后,在包含列表视图的适配器上调用 notifyDataSetChanged()
  • 您是否检查过 notes 数组是否实际包含数据?
  • 添加此行后出现同样的问题adapter.notifyDataSetChanged();
  • 发布NotesDataSource的代码

标签: java android listview


【解决方案1】:

问题是 onCreate 在生命周期中只被调用一次。当您切换活动时,主要只是隐藏和暂停。当您返回活动时,onCreate 不会再次触发。

覆盖 onStart 方法并在其中设置您的列表适配器。当您返回视图时,它将在 onCreate() 之后立即调用。这是 Android 生命周期:

http://developer.android.com/training/basics/activity-lifecycle/starting.html

【讨论】:

  • 同样的问题!也许我在使用onStart 方法时犯了一个错误。你能修改我的代码并在里面写那个方法吗?!
  • 这个答案绝对不正确 - 将 Adapter 分配给 onStart() 中的列表是错误的。
  • 那么,我可以使用onResume() 方法并在其中添加一个适配器吗?!
【解决方案2】:

我认为您的代码中存在两个问题

1) 先替换

public List<NotesModel> getAllNotes() {
        List<NotesModel> notesList = new ArrayList<NotesModel>();

        Cursor cursor = sql.query(myDB.TABLE_NAME, getAllColumns, null, null, null, null, null);
        cursor.moveToFirst();

        while (!cursor.isAfterLast()) {
            NotesModel notes = new NotesModel();
            notes.setId(cursor.getInt(0));
            notes.setTitle(cursor.getString(1));
            notes.setBody(cursor.getString(2));

            notesList.add(notes);
            cursor.moveToNext();
        }

        cursor.close();
        return notesList;
    }

这些

public List<NotesModel> getAllNotes() {
        List<NotesModel> notesList = new ArrayList<NotesModel>();

StringBuffer selectQuery = new StringBuffer();
selectQuery.append("SELECT * FROM "+myDB.TABLE_NAME+"");

        Cursor cursor = sql.rawQuery(selectQuery.toString(),null);

if (cursor != null && cursor.moveToFirst()) {
            do {
               NotesModel notes = new NotesModel();
            notes.setId(cursor.getInt(0));
            notes.setTitle(cursor.getString(1));
            notes.setBody(cursor.getString(2));

            notesList.add(notes);

            } while (cursor.moveToNext());
        }


        cursor.close();
        return notesList;
    }

2) 像这样点击列表项转到第二类--

Intent nView = new Intent(this, Second.class);
        nView.putExtra("id", notesList.get(position).getId()); // Check...!!!
nView.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        startActivity(nView);

添加注释后,像这样返回 MainActivity----

Intent nView = new Intent(this, MainActivity.class);
        nView.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        startActivity(nView);

不要使用finish,因为它只会结束当前任务并在堆栈中取出前一个屏幕而不刷新

【讨论】:

  • 谢谢,伙计!问题已经解决了!还有一个小问题,如果你能解决的话。我如何从数据库和列表中删除笔记?!请参阅onContextItemSelected 方法中的 MainActivity 类
  • 虽然 OP 确认这个答案解决了他的问题,但我不会向任何人推荐这种方法。首先使用rawQuery() 而不是query() 是不合理的——功能是相同的,但它是query() 方法,这是“Android 方式”的处事方式。这是编码风格标准的问题......
  • ...这个答案的第二个问题要严重得多。这种说法完全错误:dont't use finish because it will end current task only and take out previous screen in stack without refreshing。当先前的Activity 从堆栈中取出时,onStart()onResume() 方法都将被调用。您可以并且应该在这些方法中“刷新”活动的外观,而不是使用FLAG_ACTIVITY_CLEAR_TOP
  • @Vasily 首先,在没有适当审查的情况下不要低估任何答案。这些问题可以有100个解决方案。并非每个编码员都知道所有解决方案。我可以给他们一个复杂的反向导航解决方案,但他们不会正确理解它们。那么,如果别人不理解他们,那么帮助他们又有什么意义呢。所以我采取了一种简单的解决方案。
  • @amit 你能帮我看看删除笔记的代码吗?!
【解决方案3】:

此答案假设您的 Second 活动实现为某些全局模型添加了新注释,并且该模型的状态反映在您已 nDS 对象中>已经MainActivity中创建(因为MainActivity中的onCreate()通常不会在你finish()Second时被调用)。

您绝对应该测试上述假设是否正确。如果不是,您可以使用某种形式的Singleton 设计模式来存储数据。

为了将更改反映到ListView 中,请在您的MainActivity 中修改/添加以下代码:

public class MainActivity extends ActionBarActivity implements AdapterView.OnItemClickListener {

ArrayAdapter<String> adapter;
NotesDataSource nDS;
List < NotesModel > notesList;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    nDS = new NotesDataSource(this);
    ListView lv = (ListView) findViewById(R.id.lv);

    nDS.open();
    notesList = nDS.getAllNotes();
    nDS.close();

    String[] notes = new String[notesList.size()];

    for (int i = 0; i < notesList.size(); i++) {
        notes[i] = notesList.get(i).getTitle();
    }

    adapter = new ArrayAdapter < String > (MainActivity.this, android.R.layout.simple_list_item_1,
    android.R.id.text1, notes);
    lv.setAdapter(adapter);

    registerForContextMenu(lv);
    lv.setOnItemClickListener(this);
}



@Override
protected void onResume() {
    super.onResume();

    nDS.open();
    notesList = nDS.getAllNotes();
    nDS.close();

    String[] notes = new String[notesList.size()];

    for (int i = 0; i < notesList.size(); i++) {
        notes[i] = notesList.get(i).getTitle();
    }

    adapter.clear();
    adapter.addAll(notes);
    adapter.notifyDataSetChanged();
}

// No changes in other methods ...

}

补充说明:维护ArrayAdapter&lt;String&gt;List&lt;NotesModel&gt;非常低效且容易出错。如果您实现自定义ListAdapter 会更好。你可以使用这样的东西:

class CustomAdapter extends ArrayAdapter<NotesModel> {
    ...
}

关于编写自定义适配器的好教程可以在here找到。

【讨论】:

  • 感谢您的帮助!还是同样的问题!我将用第二课更新帖子。并且,请查看所有类中的 (Check...!!!) cmets,也许您会发现与我们的主要问题相关的错误。
  • @MrGlitch,我假设DBSQLiteOpenHelper 的子类,但我没有看到任何向SQLite DB 添加新注释的代码......你在某个地方打电话给NotesDataSource.createNote() 吗?
  • 我用DB类更新了帖子,请查看。
  • @MrGlitch,我没有看到对 NotesDataSource.createNote() 方法的任何调用。您是否检查过您的 SQLite DB 是否包含任何信息?
  • 在使用nDS.open(); 打开数据库后,我在case R.id.secondMenuSave: 内的Second class 中添加了这一行nDS.createNote(noteTitle.getText().toString(), noteBody.getText().toString());,但仍然是同样的问题!使用nDS.close();关闭数据库可能有问题?!请检查一下。谢谢。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2012-05-30
  • 1970-01-01
  • 2020-12-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多