我在一个屏幕上有两个按钮,当我点击第一个按钮时,我在下一个屏幕中显示自定义listView中的列表。当我点击第二个按钮时,我需要在下一个屏幕中将自定义列表视图替换为另一个布局(两个按钮都相同)
答案 0 :(得分:1)
按下按钮时请使用以下逻辑:
Intent intent = new Intent(FirstActivity.this, SecondActivity.class);
intent.putExtra("is_show_custom_view",true);//pass false when you press second button
startActivity(intent);
现在你必须得到那个布尔和appy逻辑,如:
if(getIntent().getBooleanExtra("is_show_custom_view")){
//Add here your code for custome view
}else{
//Add here your code for normal view
}