欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Android studio :Intent

程序员文章站 2022-09-14 16:21:16
DataMainActivity.javapackage com.example.data;import android.content.Intent;import android.net.Uri;import androidx.appcompat.app.AppCompatActivity;import android.os.Bundle;import android.view.View;import android.widget.Button;public class MainAc...

Data
MainActivity.java

package com.example.data;

import android.content.Intent;
import android.net.Uri;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class MainActivity extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Button btn = findViewById(R.id.btn);//创建按钮对象并与控件进行绑定
        //设置按钮监听事件
        btn.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent = new Intent();//创建空Intent
                intent.setAction(Intent.ACTION_VIEW);//设置Intent的动作属性
                //创建一个Uri对象并设置Uri的内容
                Uri data = Uri.parse("http://www.baidu.com");//将地址转换为Uri类型
                intent.setData(data);//设置数据属性
                startActivity(intent);//启动活动
            }
        });
    }
}

Main2Activity.java

package com.example.data;

import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;

public class Main2Activity extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main2);
    }
}

Activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">
    <Button
        android:id="@+id/btn"
        android:layout_marginTop="10dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="打开网页"/>

</LinearLayout>

Activity_main2.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".Main2Activity">

</android.support.constraint.ConstraintLayout>

Android studio :Intent
Android studio :Intent
Android studio :Intent
Intent
MainActivity.java

package com.example.intent;

        import android.content.Intent;
        import android.net.Uri;
        import androidx.appcompat.app.AppCompatActivity;
        import android.os.Bundle;
        import android.view.View;
        import android.widget.Button;
        import android.widget.EditText;

public class MainActivity extends AppCompatActivity {
    Button btn1,btn2;
    EditText et;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        btn1 = findViewById(R.id.btn1);//绑定按钮控件
        et = findViewById(R.id.et);//绑定编辑框控件
        //设置按钮监听事件
        btn1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent = new Intent();//创建Intent对象
                intent.setAction(Intent.ACTION_VIEW);//设置代开视图
                Uri data = Uri.parse(et.getText().toString());//从编辑框获取网址
                intent.setData(data);//设置Intent数据
                startActivity(intent);//启动活动
            }
        });
        btn2 = findViewById(R.id.btn2);//绑定按钮控件
        btn2.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                //创建Intent对象并设置Intent动作为拨打电话
                Intent intent = new Intent(Intent.ACTION_DIAL);
                intent.setData(Uri.parse("tel:10086"));//设置Intent数据
                startActivity(intent);//启动活动
            }
        });
    }
}

Activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:orientation="vertical">
    <LinearLayout
        android:layout_marginTop="10dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <EditText
            android:id="@+id/et"
            android:layout_marginLeft="10dp"
            android:layout_width="240dp"
            android:layout_height="wrap_content" />
        <Button
            android:id="@+id/btn1"
            android:layout_marginLeft="10dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="打开指定网页"/>
    </LinearLayout>
    <Button
        android:id="@+id/btn2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="拨打电话"/>

</LinearLayout>

Android studio :Intent
Android studio :Intent
Android studio :Intent

本文地址:https://blog.csdn.net/ITarmi/article/details/107213594