小编Gop*_*pta的帖子

ActivityGroup已弃用

我正在制作包含三个选项卡的android应用程序..在第三个选项卡上有登录屏幕..

当我点击登录按钮...我想用包含列表视图和注销按钮的活动替换活动....

以前我使用Activity Group来替换活动.但是现在已经弃用了活动组.

现在我该如何替换第三个标签下的活动?

我正在使用这些代码

Intent intent = new Intent(MyApp.this, LoginPage.class);

                    replaceContentVieww("activity4", intent);



  public void replaceContentVieww(String id, Intent newIntent) {
                    // TODO Auto-generated method stub


View view = getLocalActivityManager().startActivity(id,newIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)).getDecorView(); 
                            setContentView(view);


                    }
Run Code Online (Sandbox Code Playgroud)

有一个链接,我知道这个类已被弃用.

android logout tabbar activitygroup

5
推荐指数
1
解决办法
6794
查看次数

标签 统计

activitygroup ×1

android ×1

logout ×1

tabbar ×1