美文网首页
SystemAction

SystemAction

作者: yimt | 来源:发表于2017-02-20 00:07 被阅读0次

    Intent

    Intent.ACTION_DIAL:拔打电话

    Intent intent = new Intent(Intent.ACTION_DIAL);
    intent.setData(Uri.parse("tel:10086"));
    startActivity(intent);
    

    Intent.ACTION_VIEW:打开浏览器

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

    Intent.ACTION_CALL:直接拔打电话

    Action

    android.intent.action.VIEW:响应浏览器请求

        <intent-filter>
            <action android:name="android.intent.action.VIEW"/>
            <category android:name="android.intent.category.DEFAULT"/>
            <data android:scheme="http"/>
        </intent-filter>
    

    相关文章

      网友评论

          本文标题:SystemAction

          本文链接:https://www.haomeiwen.com/subject/jkrswttx.html