zoukankan      html  css  js  c++  java
  • Android用Intent启动Activity的方法

    最近在做一个东东时,需要启动另外一个Activity,可以有的方法有用setClass()和Component Name(应该还有其他方法,有发现时再更新)。

        1. 先说在setClass启动一个Activity的方法吧:

        Intent intent = new Intent();

        intent.setClass(this, CreatePlaylist.class)    //参数一为当前Package的context,t当前Activity的context就是this,其他Package可能用到createPackageContex()参数二为你要打开的Activity的类名

        startActivity(intent);

       2. 通过Component Name来打开的方式

           Intent intent = new Intent();        intent.setAction(Intent.ACTION_MAIN);          //添加一些特性,具体可以查看Intent文档,相关属性的介绍        intent.addCategory(Intent.CATEGORY_LAUNCHER);        intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);

          

          //通过Bundle向要打开的的Activity传递一些数据

           Bundle bundle = new Bundle();        bundle.putString("data", new String(" Hello World"));        intent.putExtras(bundle);            intent.setComponent(new ComponentName(            new String("com.android.testActivity"), new String("com.android.testActivity.testActivity")));        startActivity(intent);

  • 相关阅读:
    安亦行
    [SCOI2010]连续攻击游戏 二分图匹配
    [USACO11JAN]Roads and Planes G
    CF796C Bank Hacking
    括号类问题总结 持续更新
    CF1216E Numerical Sequence Hard Version 数学
    POJ3613 Cow Relays 矩阵快速幂
    倍增法求lca(最近公共祖先)
    Codeforces C. Jzzhu and Cities(dijkstra最短路)
    Codeforces B. Mouse Hunt(强连通分解缩点)
  • 原文地址:https://www.cnblogs.com/LiaoHao/p/3257441.html
Copyright © 2011-2022 走看看