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 应用程序中使用了 tabHost。主 ActivityGroup 类有一个列表视图。单击列表视图项目时,它会在同一选项卡中显示详细信息。我为详细视图使用了一个简单的活动类。详细视图包含一个保存按钮,用于保存数据并返回到列表视图(主)屏幕。我的问题是,第一次按下保存按钮时,它按预期工作,但是如果再次选择列表项并且在详细视图中如果按下保存按钮,应用程序会抛出错误。
请帮忙。提前致谢。
该错误可能是由许多不同的事情引起的。检查您是否已经实现了在活动之间正确切换的意图。像这样...
/** Called when the user clicks the save button */ public void save(View view) { Intent intent = new Intent(this, Main.class); startActivity(intent); }
如果这不是您想要的,您能否提供一些代码示例?