Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用程序有问题,但仅限于 Android 4.2。我解释了功能: - 第一个活动是输入登录名和密码并允许连接 - 当我连接时,我启动应用程序的主菜单。- 如果您使用后退按钮,则不会返回登录活动,使用 system.exit(0) 您会到达智能手机的主屏幕。
但是,它适用于 4.2 下的所有版本,但对于 Android 4.2,此应用程序在登录活动中被杀死并重新启动。
你有想法吗?
class YourActivity extends Activity implements OnClickListener{ ... @Override public void OnClick(View v){ switch(v.getId()){ case android.R.id.home: // Do your thing here.. break; case android.R.id.back: // Or here, if you prefer break; } } }