显式意图和隐式意图总结

package com.example.wang.myapplication;

import android.content.ComponentName;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.test_linearlayout);
    }

    //显式意图方法1
    public void b1_OnClick(View v)
    {
        Intent intent=new Intent(this,TestActivity1.class);
        startActivity(intent);
    }

    //显式意图方法2
    public void b2_OnClick(View v)
    {
        Intent intent=new Intent();

        ComponentName componentName=new ComponentName(this,TestActivity1.class);

        intent.setComponent(componentName);

        startActivity(intent);
    }

    //意图传递信息,1-发送信息,在TestActivity中 2-接收数据
    public void b3_OnClick(View v)
    {
        Intent intent=new Intent(this,TestActivity1.class);

        intent.putExtra("name","意图传递的值");

        intent.putExtra("name1", "意图传递的值1");

        startActivity(intent);
    }

    //隐式意图方式1,调用系统自身的
    public void b4_OnClick(View v)
    {
        Intent intent=new Intent(Intent.ACTION_DIAL);

        startActivity(intent);
    }

    //隐式意图方式1.1,原理同方式1,调用系统自身的
    //在Intent.java中  public static final String ACTION_DIAL = "android.intent.action.DIAL"
    public void b41_OnClick(View v)
    {
        Intent intent=new Intent("android.intent.action.DIAL");

        startActivity(intent);
    }

    //隐式意图方式2,方式1的演变
    public void b5_OnClick(View v)
    {
        Intent intent=new Intent();

        //intent.setAction("android.intent.action.DIAL")和intent.setAction(Intent.ACTION_DIAL)一样

        //intent.setAction("android.intent.action.DIAL");

        intent.setAction(Intent.ACTION_DIAL);

        startActivity(intent);
    }

    //隐式意图用date属性实现直接拨打电话功能
          //注意事项:当牵扯到费用问题的需要在功能清单文件中声明一下,
          //用<uses-permission android:name="android.permission.*"/>
          //然后在模拟器相应的应用中设置权限
    public void b6_OnClick(View v) {
        Intent intent = new Intent(Intent.ACTION_CALL);

        Uri uri = Uri.parse("tel:110");

        intent.setData(uri);

        try {
            startActivity(intent);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    //Category属性实现打开桌面
    public void b7_OnClick(View v)
    {
        //方式1
        Intent intent=new Intent(Intent.ACTION_MAIN);

        //有Category语句可以直接打开桌面,如果没有需要选择打开方式
        intent.addCategory(Intent.CATEGORY_HOME);

        startActivity(intent);
    }

      //隐式意图打开Activity
          //隐式意图利用功能清单文件中action名打开Activity,action名是自己定义的
          //情况1:action名独一无二时,直接打开
          //情况2:功能清单文件中action名重名的情况,TestActivity1和TestActivity2中action名一样,
          // 此时会提示选择哪一个
          // 同时Category的name必须有并且是"android.intent.category.DEFAULT"
    public void b8_OnClick(View v)
    {
        Intent intent=new Intent("android.MAIN1");

        startActivity(intent);
    }

    //为解决action重名可以在功能清单文件里添加Category,数量不限

    // 同时Category的name必须有并且是"android.intent.category.DEFAULT"
    public void b9_OnClick(View v)
    {
        Intent intent=new Intent("android.MAIN1");

        intent.addCategory("android.MAIN1");

        startActivity(intent);
    }

}

MainActivity

package com.example.wang.myapplication;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.widget.EditText;

public class TestActivity1 extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.test_relativelayout);

        //练习findViewById()方法
        EditText editText=(EditText)findViewById(R.id.t2);
        editText.setHint("Subject");

        //意图传递信息,2-接收数据,在MainActivity中 1-发送信息
        Intent intent=getIntent();

        String strname=intent.getStringExtra("name");

        String strname1=intent.getStringExtra("name1");

        Log.e("TAG","意图传递的值="+strname);

        Log.e("TAG","意图传递的值1="+strname1);

    }
}

TestActivity1

package com.example.wang.myapplication;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.widget.EditText;

public class TestActivity2 extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.test_relativelayout);

        //练习findViewById()方法
        EditText editText=(EditText)findViewById(R.id.t2);
        editText.setHint("测试2");

        //意图传递信息,2-接收数据,在MainActivity中 1-发送信息
        Intent intent=getIntent();

        String strname=intent.getStringExtra("name");

        String strname1=intent.getStringExtra("name1");

        Log.e("TAG","意图传递的值="+strname);

        Log.e("TAG","意图传递的值1="+strname1);

    }
}

TestActivity2

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.wang.myapplication">
    <uses-permission android:name="android.permission.CALL_PHONE"/>

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name=".TestActivity1">
            <intent-filter>
                <action android:name="android.MAIN1" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>

        <activity android:name=".TestActivity2">
            <intent-filter>
                <action android:name="android.MAIN1" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.MAIN1"/>
            </intent-filter>
        </activity>
    </application>

</manifest>

功能清单文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="显式意图方式1"
            android:id="@+id/b1_button"
            android:onClick="b1_OnClick"
            android:layout_weight="1"/>
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="显式意图方式2"
            android:onClick="b2_OnClick"
            android:layout_weight="1"/>
    </LinearLayout>

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="意图携带数据"
        android:onClick="b3_OnClick"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        >
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="隐式意图形式1"
            android:onClick="b4_OnClick"
            android:layout_weight="1"/>
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="隐式意图形式1.1"
            android:onClick="b41_OnClick"
            android:layout_weight="1"/>
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="隐式意图形式2"
            android:onClick="b5_OnClick"
            android:layout_weight="1"/>
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="隐式意图用date属性实现直接拨打电话功能"
            android:onClick="b6_OnClick"
            android:layout_weight="1"/>
        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Category属性实现打开桌面"
            android:onClick="b7_OnClick"
            android:layout_weight="1"/>
    </LinearLayout>

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="隐式意图利用功能清单文件中action名打开Activity"
        android:onClick="b8_OnClick"/>
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="为解决action重名可以添加Category"
        android:onClick="b9_OnClick"/>

</LinearLayout>

test_linearlayout

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="To"
        android:id="@+id/t1"/>
    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/t1"
        android:hint="To"
        android:id="@+id/t2"/>
    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/t2"
        android:hint="Message"
        android:id="@+id/t3"
        android:layout_above="@+id/t4"
        android:gravity="top"/>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/t4"
        android:layout_alignParentBottom="true">
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Close"
            android:layout_weight="1"/>
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Resent"
            android:layout_weight="1"/>

    </LinearLayout>

</RelativeLayout>

test_relativelayout

时间: 2024-10-01 07:48:23

显式意图和隐式意图总结的相关文章

显式意图,隐式意图。。带值传递意图

显式意图1 显式意图2 带值传递意图1 带值传递意图2 隐式意图1 隐式意图2

Android 显示意图和隐式意图的区别

意图在android的应用开发中是很重要的,明白了意图的作用和使用后,对开发会有很大帮助.如果没有把意图搞懂,以后开发应用会感觉缺些什么. 意图的作用: 1.激活组件 2.携带数据 3.意图的匹配(运用到隐式意图) android基本的设计理念是鼓励减少组件间的耦合,因此android提供了Intent(意图),用意图激活其他组件.Intent提供了一种通用的消息系统,它允许在你的应用程序与其他应用程序间传递Intent来执行和产生事件.使用Intent可以激活android应用的三个核心组件:

Intent 的显示意图和隐式意图

Intent是意图,四大组件之间的通讯通过Intent来完成分为显示意图与隐式意图. Intent的显示意图很好理解就是指定好要跳转的界面: 可以通过putExtra传递不同类型的信息,以上只是一些例子.然后在SecondActivity接收这些信息就可以了: int类型与boolean类型接收时要写默认收到的信息即未收到时显示的,要注意与传递的信息区分开. Intent的隐式意图与显示意图相反,它不指定跳转的界面,是根据设置action的值来跳转,只要与设置的action值匹配就行: 然后在清

显式Intent与隐式Intent的功能与使用方法解析。

显式Intent与隐式Intent的功能与使用方法解析. Intent,在中文中的意思是意图.就是想要做的事. 而使用startActivity(Intentintent)或者startActivityForResult(Intentintent)或者别的使用它的方法,形象地说就是指  去做你想要做的事.(do what you want to do) 首先,大体的介绍一下它们的使用差别: 1.Explicit Intent(显式意图):主要用于调用自身应用程序的组件(activity,serv

显式intent和隐式intent

android其中显式intent和隐式intent的差别 定义: Intent定义:Intent是一种在不同组件之间传递的请求消息.是应用程序发出的请求和意图. 作为一个完整的消息传递机制,Intent不仅须要发送端,还须要接收端. 显式Intent定义:对于明白指出了目标组件名称的Intent.我们称之为显式Intent. 隐式Intent定义:对于没有明白指出目标组件名称的Intent.则称之为隐式Intent. 显示Intent直接指明了被启动的的类的定义 比方一个实例: Mainact

JavaScript中显式原型和隐式原型的联系

显式原型:prototype 隐式原型:__proto__ 1.显式原型和隐式原型是什么? 在js中万物皆对象,方法(Function)是对象,方法的原型(Function.prototype)是对象,对象具有属性(__proto__)称为隐式原型,对象的隐式原型指向构造该对象的构造函数的显式原型. 方法(Function)是一个特殊的对象,除了和其他对象一样具有__proto__属性以外,它还有一个自己特有的原型属性(prototype),这个属性是一个指针,指向原型对象.原型对象也有一个属性

(java)selenium webdriver学习---三种等待时间方法:显式等待,隐式等待,强制等待

selenium webdriver学习---三种等待时间方法:显式等待,隐式等待,强制等待 本例包括窗口最大化,刷新,切换到指定窗口,后退,前进,获取当前窗口url等操作: import java.util.Set;import java.util.concurrent.TimeUnit; import org.jsoup.Jsoup;import org.jsoup.nodes.Document;import org.openqa.selenium.By;import org.openqa.

C#隐式类型局部变量&amp;隐式类型数组

[隐式类型局部变量] 可以赋予局部变量推断“类型”var 而不是显式类型.var 关键字指示编译器根据初始化语句右侧的表达式推断变量的类型.推断类型可以是内置类型.匿名类型.用户定义类型或 .NET Framework 类库中定义的类型. // i is compiled as an int var i = 5; // s is compiled as a string var s = "Hello"; // a is compiled as int[] var a = new[] {

scala学习笔记-隐式转换与隐式参数(18)

Scala提供的隐式转换和隐式参数功能,是非常有特色的功能.是Java等编程语言所没有的功能.它可以允许你手动指定,将某种类型的对象转换成其他类型的对象.通过这些功能,可以实现非常强大,而且特殊的功能. Scala的隐式转换,其实最核心的就是定义隐式转换函数,即implicit conversion function.定义的隐式转换函数,只要在编写的程序内引入,就会被Scala自动使用.Scala会根据隐式转换函数的签名,在程序中使用到隐式转换函数接收的参数类型定义的对象时,会自动将其传入隐式转

play scala 3 隐式参数和隐式域(implicit method and implicit field)

原文出处 http://alvinalexander.com/scala/scala-implicit-method-arguments-fields-example Microsoft Windows [版本 6.1.7601]版权所有 (c) 2009 Microsoft Corporation.保留所有权利. C:\Users\Bo>scalaWelcome to Scala version 2.10.4 (Java HotSpot(TM) 64-Bit Server VM, Java 1