Eclipse Android - 在不使用edittext的情况下获取数据库中的最后一行ID条目

时间:2014-03-20 14:30:24

标签: android eclipse sqlite rowid

我是android的新手,并尝试创建一个允许我输入文本的应用程序,一旦单击“提交”按钮,它将发送到另一个名为“Receiver”的活动,并且一旦活动Receiver打开,它将显示我在edittext中输入的文本

我的问题是如何获取我输入的最后一个条目的行ID,以便自动显示或不使用textfield手动获取行ID。

这是我的代码。

protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.project_main);

    try {
        String  s = "1";
        long l = Long.parseLong(s);
        DatabasePM amem = new DatabasePM(this);
        amem.open();
        String returnedName = amem.getNotif(l);
        amem.close();

        Dialog d  = new Dialog(this);
        d.setTitle("Notification!");
            TextView tv = new TextView(this);
            tv.setText(""+returnedName);
            d.setContentView(tv);
            d.show();
    }

1 个答案:

答案 0 :(得分:0)

我不确定您要尝试实现的目标,但Android提供了一种通过Intent额外通过活动传递数据的简单方法。我建议你看看this discussion