我想知道是否可以实现导航系统,其中一个子活动可以有两个父活动.基本上,我有一个用户可能喜欢的内容流.他们可以通过电子邮件共享已保存的项目,来自流活动和显示“受欢迎”内容的活动.我想避免仅仅因为导航而重复一个类.
解决方法
对的,这是可能的.但是如果有2个或更多的父母,你就不能依赖于这里描述的Up Navigation的实现:
Providing Up Navigation
所以,你有2个选择:
1-使用后退按钮行为
您可以通过在onOptionsItemSelected(MenuItem项)的android.R.id.home案例中调用finish()或onBackPressed()来完成此操作.像这样:
@Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case android.R.id.home: finish(); return true; }
2-返回应用的第一个活动
将用户带回应用程序启动的第一个活动,如下所示:
@Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case android.R.id.home: Intent backIntent = new Intent(this,YOUR_FIRST_ACTIVITY.class); backIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(backIntent); return true; }
顺便说一句,这个问题可能是this question的重复