gpt4 book ai didi

android - 在选项卡栏布局中的 Activity 之间切换

转载 作者:行者123 更新时间:2023-11-30 04:30:01 26 4
gpt4 key购买 nike

我有这个基本的标签栏布局,它为三个 Activity 创建了一个标签。如果我想交换主要 Activity 中的 Activity 怎么办?

我希望它像通讯录应用程序一样工作,您可以在该应用程序中找到主要的联系人选项卡,并在点击联系人时看到详细的 Activity 。

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

TabHost tabHost = getTabHost();

// Tab for Photos
TabSpec photospec = tabHost.newTabSpec("Photos");
// setting Title and Icon for the Tab
photospec.setIndicator("Photos", getResources().getDrawable(R.drawable.icon_photos_tab));
Intent photosIntent = new Intent(this, PhotosActivity.class);
photospec.setContent(photosIntent);

// Tab for Songs
TabSpec songspec = tabHost.newTabSpec("Songs");
songspec.setIndicator("Songs", getResources().getDrawable(R.drawable.icon_songs_tab));
Intent songsIntent = new Intent(this, SongsActivity.class);
songspec.setContent(songsIntent);

// Tab for Videos
TabSpec videospec = tabHost.newTabSpec("Videos");
videospec.setIndicator("Videos", getResources().getDrawable(R.drawable.icon_videos_tab));
Intent videosIntent = new Intent(this, VideosActivity.class);
videospec.setContent(videosIntent);

// Adding all TabSpec to TabHost
tabHost.addTab(photospec); // Adding photos tab
tabHost.addTab(songspec); // Adding songs tab
tabHost.addTab(videospec); // Adding videos tab

}*

最佳答案

如果你问如何开始一个全新的 Activity ,它将用 TabHost 取代你的 Activity ,那么我相信你会正常开始这个新 Activity

Intent intent = new Intent(this, NewActivity.class);
startActivity(intent);

另一方面,如果您询问如何更改选项卡内的 Activity ,那么 this thread看起来像你想要的。

关于android - 在选项卡栏布局中的 Activity 之间切换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7883753/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com