0

我在网上和很多论坛上搜索过,但从来没有得到关于是什么导致我提到的问题的可靠答案......有很多 HowTo,我已经尝试过,但它从来没有用过......我有 6 个按钮在我的主要活动中,每个按钮都会启动一个新活动。当我点击一个按钮转到每日日志活动时,我有一个文本视图坐在那里,我想用当前日期填充它。我在 on Create() 方法中尝试了这段代码:

TextView tv = (TextView)findViewById(R.id.txtCurrentDate);
String ct = DateFormat.getDateInstance().format(new Date());
tv.setText(ct);

这对我来说没有奏效。

对于我的第二个问题......我使用了 super.onStop(); 结束();

在单击事件的方法中,但随后它崩溃了。我读过的所有地方都说要这样做,但它对我不起作用......我想要做的是当我从我的主要活动中打开另一个活动时,会有一个名为“保存”的按钮,它将执行哪些数据库操作需要完成并关闭活动并返回主要活动。我正在使用我的 Galaxy s3 而不是 Eclipse 模拟器来运行我的应用程序,以防万一

谢谢

4

3 回答 3

0

这是我正在使用的代码。我今天早上尝试删除 onstop 方法,但它仍然挂起并崩溃。日志猫显示它找不到我的关闭活动方法,但你可以看到它就在那里..

Nilesh Patel 和 C James .. 至于用当前日期填充文本视图,当我进入新活动(它应该显示日期)时,文本视图消失了,除了我的背景之外什么都没有。Nilesh Patel,我会试试你的代码,但它与我正在做的非常相似。

希望你们能看到我没有看到的...这是我的主要活动代码.. package com.example.startingnewactivity;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;

public class MainActivity extends Activity {

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

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}
public void startMyNewActivity (View view)
{
    Intent intent = new Intent(this, MyNewActivity.class);
    startActivity(intent);
}

}

这是我的新活动代码...

package com.example.startingnewactivity;

import android.annotation.SuppressLint;
import android.annotation.TargetApi;
import android.app.Activity;
import android.content.Intent;
import android.os.Build;
import android.os.Bundle;
import android.support.v4.app.NavUtils;

导入 android.view.Menu;导入android.view.MenuItem;

public class MyNewActivity extends Activity {
@SuppressLint("NewApi")
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_my_new);
    // Show the Up button in the action bar.
    setupActionBar();
}

/**
 * Set up the {@link android.app.ActionBar}, if the API is available.
 */
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
private void setupActionBar() {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
        getActionBar().setDisplayHomeAsUpEnabled(true);
    }
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.my_new, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
    case android.R.id.home:
        // This ID represents the Home or Up button. In the case of this
        // activity, the Up button is shown. Use NavUtils to allow users
        // to navigate up one level in the application structure. For
        // more details, see the Navigation pattern on Android Design:
        //
        // http://developer.android.com/design/patterns/navigation.html#up-vs-                              //back
        //
        NavUtils.navigateUpFromSameTask(this);
        return true;
    }
    return super.onOptionsItemSelected(item);
}
protected void CloseMyActivity() {
    super.onStop();
    finish();

}

}

于 2013-07-03T16:19:40.927 回答
0

关于日期,您没有说它对您不起作用..您没有收到文本或格式不正确的文本吗?

至于退出活动..我想你只想自己调用finish(),不要调用super.onStop()..从点击事件内部调用super.onStop()会给你带来问题.

于 2013-07-03T06:02:38.457 回答
0

请尝试使用以下代码。

formatDateForPost(新日期());

public static String formatDateForPost(Date dateObj) { String date = ""; 尝试 { SimpleDateFormat f = new SimpleDateFormat("yyyy-MM-dd"); 日期 = f.format(dateObj); } 捕捉(异常 e){ e.printStackTrace();

    }
    return date;
}
于 2013-07-03T06:08:16.573 回答