通用Intent

Intent 用于通过描述您想在某个 `[Intent] 对象中执行的简单操作(如“查看地图”或“拍摄照片”)来启动另一应用中的某个 Activity。 这种 Intent 称作隐式 Intent,因为它并不指定要启动的应用组件,而是指定一项操作并提供执行该操作所需的一些数据。

当您调用 [startActivity()][startActivityForResult()] 并向其传递隐式 Intent 时,系统会 [将 Intent 解析]为可处理该 Intent 的应用并启动其对应的 [Activity]。 如果有多个应用可处理 Intent,系统会为用户显示一个对话框,供其选择要使用的应用。

MainActivity程序起点

private Button alarmButton;
private Button eventButton;
private Button caButton;
private Button cactButton;
private Button cactInsertButton;
private Button emailButton;
private Button emailAppButton;
private Button catButton;
private Button mapButton;
private Button audioButton;
private Button phoneButton;
private Button bowerButton;

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

    alarmButton = findViewById(R.id.button_alarm);
    eventButton = findViewById(R.id.button_event);
    caButton = findViewById(R.id.button_ca);
    cactButton = findViewById(R.id.button_cact);
    cactInsertButton = findViewById(R.id.button_cact_inset);
    emailButton = findViewById(R.id.button_email);
    emailAppButton = findViewById(R.id.button_email_app);
    catButton = findViewById(R.id.button_cat);
    mapButton = findViewById(R.id.button_map);
    audioButton = findViewById(R.id.button_audio);
    phoneButton = findViewById(R.id.button_phone);
    bowerButton = findViewById(R.id.button_bower);

    alarmButton.setOnClickListener(this);//设置系统闹钟
    eventButton.setOnClickListener(this);//添加日历
    caButton.setOnClickListener(this);//打开系统相机
    cactButton.setOnClickListener(this);//打开特定联系人
    cactInsertButton.setOnClickListener(this);//插入联系人
    emailButton.setOnClickListener(this);//打开电子邮件
    emailAppButton.setOnClickListener(this);//打开电子邮件
    catButton.setOnClickListener(this);//叫车
    mapButton.setOnClickListener(this);//地图应用
    audioButton.setOnClickListener(this);//播放音乐
    phoneButton.setOnClickListener(this);//打电话
    bowerButton.setOnClickListener(this);//打开浏览器
}

/**
 * 打开浏览器
 *
 * @param url
 */
public void openWebPage(String url) {
    Uri webpage = Uri.parse(url);
    Intent intent = new Intent(Intent.ACTION_VIEW, webpage);
    if (intent.resolveActivity(getPackageManager()) != null) {
        startActivity(intent);
    }
}

/**
 * 打电话
 */
public void callMe(String phoneNumber) {
    Intent intent = new Intent(Intent.ACTION_DIAL);
    intent.setData(Uri.parse("tel:" + phoneNumber));
    if (intent.resolveActivity(getPackageManager()) != null) {
        startActivity(intent);
    }
}

/**
 * 播放特定歌手音乐
 */
public void playSearchArtist(String artist) {
    Toast.makeText(this, "播放音乐", Toast.LENGTH_SHORT);
    Intent intent = new Intent(MediaStore.INTENT_ACTION_MEDIA_PLAY_FROM_SEARCH);
    intent.putExtra(MediaStore.EXTRA_MEDIA_FOCUS,
            MediaStore.Audio.Artists.ENTRY_CONTENT_TYPE);
    intent.putExtra(MediaStore.EXTRA_MEDIA_ARTIST, artist);
    intent.putExtra(SearchManager.QUERY, artist);
    if (intent.resolveActivity(getPackageManager()) != null) {
        startActivity(intent);
    }
}

/**
 * 打开地图应用
 *
 * @param geoLocation
 */
public void showMap(Uri geoLocation) {
    Intent intent = new Intent(Intent.ACTION_VIEW);
    intent.setData(geoLocation);
    if (intent.resolveActivity(getPackageManager()) != null) {
        startActivity(intent);
    }
}

/**
 * 叫车用用
 */
public void callCar() {
    //Intent intent = new Intent(ReserveIntents.ACTION_RESERVE_TAXI_RESERVATION);
    //if (intent.resolveActivity(getPackageManager()) != null) {
    //     startActivity(intent);
    // }
}

/**
 * 打开电子邮件,app
 */
public void composeEmail(String[] addresses, String subject) {
    Intent intent = new Intent(Intent.ACTION_SENDTO);
    intent.setData(Uri.parse("mailto:")); // only email apps should handle this
    intent.putExtra(Intent.EXTRA_EMAIL, addresses);
    intent.putExtra(Intent.EXTRA_SUBJECT, subject);
    if (intent.resolveActivity(getPackageManager()) != null) {
        startActivity(intent);
    }
}

/**
 * 打开电子邮件,本地手机
 */
public void composeEmail(String[] addresses, String subject, Uri attachment) {
    Intent intent = new Intent(Intent.ACTION_SEND);
    intent.setType("*/*");
    intent.putExtra(Intent.EXTRA_EMAIL, addresses);
    intent.putExtra(Intent.EXTRA_SUBJECT, subject);
    intent.putExtra(Intent.EXTRA_STREAM, attachment);
    if (intent.resolveActivity(getPackageManager()) != null) {
        startActivity(intent);
    }
}

/**
 * 插入联系人
 */
public void insertContact(String name, String email) {
    Intent intent = new Intent(Intent.ACTION_INSERT);
    intent.setType(ContactsContract.Contacts.CONTENT_TYPE);
    intent.putExtra(ContactsContract.Intents.Insert.NAME, name);
    intent.putExtra(ContactsContract.Intents.Insert.EMAIL, email);
    if (intent.resolveActivity(getPackageManager()) != null) {
        startActivity(intent);
    }
}

/**
 * 选择特定联系人
 */
static final int REQUEST_SELECT_PHONE_NUMBER = 1;

public void selectContact() {
    // Start an activity for the user to pick a phone number from contacts
    Intent intent = new Intent(Intent.ACTION_PICK);
    intent.setType(ContactsContract.CommonDataKinds.Phone.CONTENT_TYPE);
    if (intent.resolveActivity(getPackageManager()) != null) {
        startActivityForResult(intent, REQUEST_SELECT_PHONE_NUMBER);
    }
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    //联系人回调
    if (requestCode == REQUEST_SELECT_PHONE_NUMBER && resultCode == RESULT_OK) {
        // Get the URI and query the content provider for the phone number
        Uri contactUri = data.getData();
        String[] projection = new String[]{ContactsContract.CommonDataKinds.Phone.NUMBER};
        Cursor cursor = getContentResolver().query(contactUri, projection,
                null, null, null);
        // If the cursor returned is valid, get the phone number
        if (cursor != null && cursor.moveToFirst()) {
            int numberIndex = cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER);
            String number = cursor.getString(numberIndex);
            // Do something with the phone number
        }
    }
    //  相机回调
    if (requestCode == REQUEST_IMAGE_CAPTURE && resultCode == RESULT_OK) {
        Bitmap thumbnail = data.getParcelableExtra("data");
        // Do other work with full size photo saved in mLocationForPhotos
    }
}

/**
 * 启动相机
 */
static final int REQUEST_IMAGE_CAPTURE = 1;

//static final Uri mLocationForPhotos;
public void captureOhpto(String targetFileNmae) {
    //Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);//相机模式启动
    Intent intent = new Intent(MediaStore.INTENT_ACTION_VIDEO_CAMERA);//视频模式启动
    //intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.withAppendedPath(mLocationForPhotos,targetFileNmae));
    if (intent.resolveActivity(getPackageManager()) != null) {
        startActivity(intent);
    }
}

/**
 * 添加日历
 */
public void addEvent(String title, String location, Calendar begin, Calendar end) {
    Intent intent = new Intent(Intent.ACTION_INSERT)
            .setData(CalendarContract.Events.CONTENT_URI)
            .putExtra(CalendarContract.Events.TITLE, title)
            .putExtra(CalendarContract.Events.EVENT_LOCATION, location)
            .putExtra(CalendarContract.EXTRA_EVENT_BEGIN_TIME, begin)
            .putExtra(CalendarContract.EXTRA_EVENT_END_TIME, end);
    if (intent.resolveActivity(getPackageManager()) != null) {
        startActivity(intent);
    }
}

/**
 * 创建闹钟
 */
public void createAlarm(String message, int hour, int minutes) {

    Intent intent = new Intent(AlarmClock.ACTION_SET_ALARM)
            .putExtra(AlarmClock.EXTRA_MESSAGE, message)
            .putExtra(AlarmClock.EXTRA_HOUR, hour)
            .putExtra(AlarmClock.EXTRA_MINUTES, minutes);
    if (intent.resolveActivity(getPackageManager()) != null) {
        startActivity(intent);
    }
}


@Override
public void onClick(View v) {
    switch (v.getId()) {
        case R.id.button_alarm:
            createAlarm("打开创建系统闹钟页面", 14, 27);
            break;
        case R.id.button_event:
            addEvent("添加日历", "我也不知道该写什么", Calendar.getInstance(), Calendar.getInstance());
            break;
        case R.id.button_ca:
            captureOhpto("抛射图片");
            break;
        case R.id.button_cact:
            selectContact();
            break;
        case R.id.button_cact_inset:
            insertContact("周大王", "1102344710@qq.com");
            break;
        case R.id.button_email:
            composeEmail(new String[]{"1102344710", "1112344710"}, "这是主题", Uri.EMPTY);
            break;
        case R.id.button_email_app:
            composeEmail(new String[]{"1102344710", "1112344710"}, "这是主题");
            break;
        case R.id.button_cat:
            Toast.makeText(this, "不知道为啥不能使用", Toast.LENGTH_SHORT);
            break;
        case R.id.button_map:
            String url = "http://api.map.baidu.com/direction?origin=33.988177,118.786991&destination=32.047616,118.790609&mode=driving&output=";
            Uri uri = Uri.parse(url);
            showMap(uri);
            break;
        case R.id.button_audio:
            playSearchArtist("薛之谦");
            //createAlarm("打开创建系统闹钟页面",14,27);
            break;
        case R.id.button_phone:
            callMe("15257135393");
            break;
        case R.id.button_bower:
            openWebPage("http://www.xiaomi.com");
            break;
        default:
            break;
    }
}

布局文件

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <Button
        android:id="@+id/button_alarm"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="创建闹钟" />

    <Button
        android:id="@+id/button_event"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="添加日历" />

    <Button
        android:id="@+id/button_ca"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="启动相机" />

    <Button
        android:id="@+id/button_cact"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="打开联系人" />

    <Button
        android:id="@+id/button_cact_inset"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="插入联系人" />

    <Button
        android:id="@+id/button_email"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="打开电子邮件" />

    <Button
        android:id="@+id/button_email_app"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="打开电子邮件" />

    <Button
        android:id="@+id/button_cat"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="叫车" />

    <Button
        android:id="@+id/button_map"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="打开地图应用" />

    <Button
        android:id="@+id/button_audio"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="播放特定歌手音乐" />
    <Button
        android:id="@+id/button_phone"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="打电话" />
    <Button
        android:id="@+id/button_bower"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="打开浏览器" />

</LinearLayout>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,378评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,356评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,702评论 0 342
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,259评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,263评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,036评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,349评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,979评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,469评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,938评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,059评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,703评论 4 323
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,257评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,262评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,485评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,501评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,792评论 2 345

推荐阅读更多精彩内容

  • ¥开启¥ 【iAPP实现进入界面执行逐一显】 〖2017-08-25 15:22:14〗 《//首先开一个线程,因...
    小菜c阅读 6,358评论 0 17
  • (1)闹钟 创建闹钟(ACTION_SET_ALARM)示例Intent: 注:为了调用ACTION_SET_AL...
    sunnygarden阅读 1,606评论 0 10
  • 当不再拥有昔日的欢笑, 你是否会回到我的身边。 如果你出现在我的身旁, 我会带给你一生的欢喜。 让你感受到一世的幸...
    筋工元素阅读 245评论 0 4
  • 就许多人来说,纸巾只有两种区别,好用与不好用。滑的好用,粗的不好用。喜欢的好用,不喜欢的不好用。 对于...
    放下手机立地成贤阅读 225评论 0 1
  • “今晚月色真美。” 你轻轻念着书中的这句话,从我身旁绕过。 “什么意思?” “就是含蓄地表达,我喜欢你。笨。” 你...
    沅辰_chris阅读 417评论 0 0