android – ActivityGroup已弃用

前端之家收集整理的这篇文章主要介绍了android – 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);


                    }

我知道了class has been deprecated.这个链接

最佳答案
您应该在兼容包中使用Fragment和FragmentManager

http://developer.android.com/sdk/compatibility-library.html

使用ADT下载它,然后转到此处的示例
额外/机器人/兼容性/ V4 /样品/

原文链接:https://www.f2er.com/android/430484.html

猜你在找的Android相关文章