Android学习笔记(三)

1.创建第一个活动

方法和第一个差不多先建个layout里面的xml文件,然后在res里面建个java活动类,然后在文件AndroidManifest.xml中注册

直接加上

<activity

          android:name=".SecondActivity">

</activity>

2.创建更多的活动方法同上

 

3.活动间的交互

(1)Intent方式

显式:在java文件中添加

//第一个参数是活动一,第一个参数是要启动的活动的类

Intent intent = new Intent(FirstActivity.this,SecodeActivity.class);

//开始交互
startActivity(intent);

隐式: 在要响应的活动中配置<intent-filter>的内容,可以指定当前活动能够响应的action和category

<activity
            android:name=".SecodeActivity">
            <intent-filter>
                <action android:name="com.hello.activitytest.ACTION_START" />
                <category android:name="android.intent.category.DEFAULT"/>
            </intent-filter>
  </activity>

           修改java活动代码

Intent intent = new Intent("com.example.activitytest.ACTION_START");

添加了category,<intent-filter>里面的三句必须全部匹配上才能互动,否则会程序崩溃

intent.addCategory("com.hello.activitytest.MY_CATEGORY");

<intent-filter>
        <action android:name="com.hello.activitytest.ACTION_START" />
         <category android:name="android.intent.category.DEFAULT" />
         <category android:name="com.hello.activitytest.MY_CATEGORY"/>
</intent-filter>

跳转到指定网页

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("http://www.baidu.com"));
startActivity(intent);

转载于:https://www.cnblogs.com/zuofei123/p/5512313.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值