intent类的不同页面跳转

简介: layout文件 很简单,给Button设置一个点击事件就可以了。

layout文件 很简单

给Button设置一个点击事件就可以了

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        android:textSize="50dp"
        android:onClick="tobaidu" />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="打开相机"
        android:textSize="50dp"
        android:onClick="tocamera" />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="打开相册"
        android:textSize="50dp"
        android:onClick="tophoto" />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="打电话"
        android:textSize="50dp"
        android:onClick="tocall" />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="发短信"
        android:textSize="50dp"
        android:onClick="tomsg" />
</LinearLayout>


然后就是在Java代码中稍微设置一下就好了

package com.example.secondprogram;
import androidx.activity.result.ActivityResult;
import androidx.activity.result.ActivityResultCallback;
import androidx.activity.result.ActivityResultLauncher;
import androidx.activity.result.contract.ActivityResultContracts;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.content.SharedPreferences;
import android.net.Uri;
import android.os.Bundle;
import android.provider.Settings;
import android.view.View;
public class MainActivity extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
    //去浏览器的指定网址页面
    public void tobaidu(View view) {
        Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.setData(Uri.parse("https://fanyi.baidu.com/?" +
                "aldtype=16047#en/zh/Features%20that%20apply%" +
                "20to%20distribution%20by%20the%20bundle"));
        startActivity(intent);
    }
    //系统自带相机
    public void tocamera(View view) {
        Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
        startActivity(intent);
    }
    //系统自带相册
    public void tophoto(View view) {
        Intent intent=new Intent("android.intent.action.PICK");
        intent.setType("image/*");
        startActivity(intent);
    }
    //系统自带电话,且打开时候110已经帮你按好了
    public void tocall(View view) {
        Intent intent = new Intent(Intent.ACTION_DIAL);
        intent.setData(Uri.parse("tel:110"));
        startActivity(intent);
    }
    //打开短信,且收件人和消息已经帮你输入好了,点击发送即可
    public void tomsg(View view) {
        Intent intent = new Intent(Intent.ACTION_SENDTO);
        intent.setData(Uri.parse("smsto:110"));
        intent.putExtra("ssss", "收下");
        startActivity(intent);
        //此处是一个存储工具,可以忽略,SharedPreferences是本地持久存储类
        //SharedPreferences sharedPreferences = 
                        //getSharedPreferences("ss", MODE_PRIVATE);
        //SharedPreferences.Editor editor = sharedPreferences.edit();
    }
}


目录
相关文章
|
6月前
activity中加载fragment的控件 在fragment 中调用activity中的控件
activity中加载fragment的控件 在fragment 中调用activity中的控件
45 0
|
Android开发
【Android】Fragment跳转Activity时携带数据
在网上你可以看到很多Fragment都是用接口回调来携带数据跳转到Activity。 我觉得好麻烦,于是你们可以用我下面的方法 而我们可以直接使用下面这个方法:
121 0
|
XML Android开发 iOS开发
Android开发之Activity的创建跳转及传值
在Android系统的江湖中有四大组件:活动(Activity), 服务(Service), 广播接收器(Broadcast Reciver)和内容提供者(Content Provider)。
1152 0
|
Android开发
Android Studio 使用Intent实现页面的跳转(带参数)
不管是在APP,还是在网站中,页面之间的跳转都是很常见的,本文主要讲一下在APP中,如何通过Intent实现页面的跳转。   不带参数: 写在MainActivity页面的代码: 1 Intent intent = new Intent(); 2 intent.
3799 0
|
Android开发 数据格式 XML
|
Android开发 存储 开发工具