码迷,mamicode.com
首页 > 其他好文 > 详细

intent对于电话和浏览器调用

时间:2014-11-21 23:28:42      阅读:368      评论:0      收藏:0      [点我收藏+]

标签:android   style   http   io   ar   sp   java   文件   数据   

1、创建xml文件及按钮

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="match_parent"
              android:layout_height="match_parent">
    <Button
            android:id="@+id/intentbtn"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="intent调用浏览器"


            android:layout_marginTop="100dp"/>
    <Button
    android:id="@+id/intentbtncall"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="intent调用电话"/>
</LinearLayout>

2、新创建一个Intent的java文件

ublic class Intent_s extends Activity {

//定义两个属性
    private Button mbutton,callbutton;


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

//初始化属性
        mbutton = (Button) findViewById(R.id.intentbtn);
        callbutton=(Button)findViewById(R.id.intentbtncall);

//监听intent调用电话的按钮
        callbutton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

//标示地址
                Uri uri = Uri.parse("tel:13881715535");

//新创建intent调用
                Intent it = new Intent(Intent.ACTION_DIAL, uri);

//启动
                startActivity(it);
            }
        });

//监听intent调用浏览器的监听
        mbutton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

//标示地址
                Uri uri = Uri.parse("http://www.baidu.com");

//新创建intent
                Intent intent = new Intent();

//调用intent
                intent.setAction(Intent.ACTION_VIEW);

//向intent放入数据
                intent.setData(uri);

//启动
                startActivity(intent);
            }
        });
    }

intent对于电话和浏览器调用

标签:android   style   http   io   ar   sp   java   文件   数据   

原文地址:http://blog.csdn.net/generallizhong/article/details/41353915

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!