安卓开发学习之简单的Activity实战输入姓名返回电话号码

简介: 简单的Activity实战输入姓名返回电话号码

# 输入姓名返回电话号码


## 大概作业要求:


### 查询界面:

屏幕截图 2022-04-09 143551.png



### 应用选择界面:


屏幕截图 2022-04-09 143602.png


#### 1.


屏幕截图 2022-04-09 143618.png

#### 2.


屏幕截图 2022-04-09 143626.png

### 返回结果



屏幕截图 2022-04-09 143643.png


# 第一步,实现三个界面布局


## activity_main.xml


```xml

<?xml version="1.0" encoding="utf-8"?>

<androidx.constraintlayout.widget.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"

   android:orientation="vertical"

   tools:context=".MainActivity">

<RelativeLayout

   android:layout_width="match_parent"

   android:layout_height="match_parent"

   android:orientation="horizontal"

   android:paddingLeft="20dp"

   android:paddingTop="20dp">


   <TextView

       android:layout_width="wrap_content"

       android:layout_height="wrap_content"

       android:id="@+id/name"

       android:text="@string/xingming"

       android:textSize="30dp">


   </TextView>


   <EditText

       android:id="@+id/edit"

       android:layout_width="match_parent"

       android:layout_height="wrap_content"

       android:layout_marginLeft="10dp"

       android:layout_toRightOf="@id/name"

       android:textSize="20dp">


   </EditText>


   <Button

       android:id="@+id/button"

       android:layout_width="wrap_content"

       android:layout_height="75dp"

       android:layout_below="@id/name"

       android:layout_marginTop="25dp"

       android:onClick="Search"

       android:text="@string/chaxun"

       android:textColor="@color/black"

       android:textSize="20dp"

       app:backgroundTint="#CFCCCC"></Button>

   <TextView

       android:layout_width="wrap_content"

       android:layout_height="50dp"

       android:id="@+id/num"

       android:layout_marginTop="50dp"

       android:layout_below="@id/button"

       android:text="@string/number"

       android:textSize="20dp"></TextView>

   <TextView

       android:layout_width="wrap_content"

       android:layout_height="50dp"

       android:id="@+id/numhao"

       android:layout_marginTop="50dp"

       android:layout_below="@id/button"

       android:layout_toRightOf="@id/num"

       android:textSize="20dp"></TextView>



</RelativeLayout>


</androidx.constraintlayout.widget.ConstraintLayout>

```


## 界面:


屏幕截图 2022-04-09 144904.png


## activity_pickcontact.xml


```xml

<?xml version="1.0" encoding="utf-8"?>

<androidx.constraintlayout.widget.ConstraintLayout

   xmlns:android="http://schemas.android.com/apk/res/android"

   xmlns:app="http://schemas.android.com/apk/res-auto"

   android:layout_width="match_parent"

   android:layout_height="match_parent"

   xmlns:tools="http://schemas.android.com/tools"

   tools:context=".PickContact">

   <RelativeLayout

       android:layout_width="match_parent"

       android:layout_height="match_parent">

       <TextView

           android:layout_width="wrap_content"

           android:layout_height="wrap_content"

           android:id="@+id/xingm"

           android:layout_marginTop="50dp"

           android:text="您要查询的姓名:"

           android:textSize="20dp"></TextView>

       <TextView

           android:layout_width="wrap_content"

           android:layout_height="wrap_content"

           android:id="@+id/xingming"

           android:layout_marginTop="50dp"

           android:layout_toRightOf="@id/xingm"

           android:textSize="20dp"></TextView>

       <TextView

           android:layout_width="wrap_content"

           android:layout_height="wrap_content"

           android:id="@+id/dianhua"

           android:layout_below="@id/xingm"

           android:layout_marginTop="20dp"

           android:text="请输入电话号码:"

           android:textSize="20dp"></TextView>

       <EditText

           android:layout_width="match_parent"

           android:layout_height="wrap_content"

           android:id="@+id/number2"

           android:layout_marginTop="70dp"

           android:layout_toRightOf="@id/dianhua"

           android:textSize="30dp"></EditText>


       <Button

           android:layout_width="110dp"

           android:layout_height="wrap_content"

           android:layout_below="@id/dianhua"

           android:layout_marginTop="30dp"

           android:layout_marginLeft="20dp"

           android:onClick="Fanhui"

           android:text="返回"

           android:textColor="@color/black"

           android:textSize="20dp"

           app:backgroundTint="#DAD6D6"></Button>

   </RelativeLayout>



</androidx.constraintlayout.widget.ConstraintLayout>

```


## 界面:


屏幕截图 2022-04-09 144919.png


## activity_anotherpick.xml


```xml

<?xml version="1.0" encoding="utf-8"?>

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"

   xmlns:app="http://schemas.android.com/apk/res-auto"

   android:layout_width="match_parent"

   android:layout_height="match_parent"

   xmlns:tools="http://schemas.android.com/tools"

   tools:context=".anotherPick">

   <RelativeLayout

       android:layout_width="match_parent"

       android:layout_height="match_parent">

       <TextView

           android:layout_width="wrap_content"

           android:layout_height="wrap_content"

           android:id="@+id/xingm"

           android:layout_marginTop="50dp"

           android:text="您要查询的姓名:"

           android:textSize="20dp"></TextView>

       <TextView

           android:layout_width="wrap_content"

           android:layout_height="wrap_content"

           android:id="@+id/xingming"

           android:layout_marginTop="50dp"

           android:layout_toRightOf="@id/xingm"

           android:textSize="20dp"></TextView>

       <TextView

           android:layout_width="wrap_content"

           android:layout_height="wrap_content"

           android:id="@+id/dianhua"

           android:layout_below="@id/xingm"

           android:layout_marginTop="20dp"

           android:text="请输入电话号码:"

           android:textSize="20dp"></TextView>


       <EditText

           android:id="@+id/number1"

           android:layout_width="match_parent"

           android:layout_height="wrap_content"

           android:layout_marginLeft="0dp"

           android:layout_marginTop="70dp"

           android:layout_toRightOf="@id/dianhua"

           android:textSize="30dp"></EditText>


       <Button

           android:layout_width="wrap_content"

           android:layout_height="wrap_content"

           android:layout_below="@id/dianhua"

           android:layout_marginTop="30dp"

           android:layout_marginLeft="20dp"

           android:onClick="Fanhui"

           android:text="返回"

           android:textSize="20dp"

           android:textColor="@color/black"

           app:backgroundTint="#D5D2D2"></Button>

   </RelativeLayout>


</androidx.constraintlayout.widget.ConstraintLayout>

```


## 界面:


屏幕截图 2022-04-09 144930.png


# 第二步,实现具体功能


## MainActivity


```java

package com.example.myapplication;


import androidx.annotation.Nullable;

import androidx.appcompat.app.AppCompatActivity;


import android.content.Intent;

import android.os.Bundle;

import android.view.View;

import android.widget.EditText;

import android.widget.TextView;

import android.widget.Toast;


public class MainActivity extends AppCompatActivity {

   private EditText et_name;


   @Override

   protected void onCreate(Bundle savedInstanceState) {

       super.onCreate(savedInstanceState);

       setContentView(R.layout.activity_main);

       et_name=(EditText)findViewById(R.id.edit);

   }

   public void Search(View v){

       Intent intent=new Intent("abc");

       intent.putExtra("name",et_name.getText().toString().trim());

       String title="联系人";

       Intent chooser=Intent.createChooser(intent,title);

       if(intent.resolveActivity(getPackageManager())!=null){

           startActivityForResult(chooser,200);

       }else {

           Toast.makeText(this,"没有可以响应action的activity",Toast.LENGTH_SHORT).show();

       }

   }

   @Override

   protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {


       if (data != null) {

           if (requestCode == 200) {

               if (resultCode == 100) {

                   String eid = data.getStringExtra("haoma");

                   TextView view = (TextView) findViewById(R.id.numhao);

                   view.setText(eid);

               }else if (resultCode == 200){

                   String eid = data.getStringExtra("haoma");

                   TextView view = (TextView) findViewById(R.id.numhao);

                   view.setText(eid);

               }

           }

       }

       super.onActivityResult(requestCode, resultCode, data);

   }


}

```


## PickContact


```java

package com.example.myapplication;


import android.content.Intent;

import android.os.Bundle;

import android.view.View;

import android.widget.EditText;

import android.widget.TextView;


import androidx.appcompat.app.AppCompatActivity;


public class PickContact extends AppCompatActivity {

   @Override

   protected void onCreate(Bundle savedInstanceState) {

       super.onCreate(savedInstanceState);

       setContentView(R.layout.activity_pickcontact);

       Intent intent = getIntent();

       String name = intent.getStringExtra("name");

       TextView xingming = (TextView) findViewById(R.id.xingming);

       xingming.setText(name);

   }

   public  void Fanhui(View v){

       EditText number = (EditText) findViewById(R.id.number2);

       Intent intent = new Intent();

       intent.putExtra("haoma", number.getText().toString());

       setResult(200, intent);

       finish();

   }

}

```


## anotherPick


```java

package com.example.myapplication;


import android.content.Intent;

import android.os.Bundle;

import android.view.View;

import android.widget.EditText;

import android.widget.TextView;


import androidx.appcompat.app.AppCompatActivity;


public class anotherPick extends AppCompatActivity {

   @Override

   protected void onCreate(Bundle savedInstanceState) {

       super.onCreate(savedInstanceState);

       setContentView(R.layout.activity_anotherpick);

       Intent intent = getIntent();

       String name = intent.getStringExtra("name");

       TextView xingming = (TextView) findViewById(R.id.xingming);

       xingming.setText(name);


   }


   public void Fanhui(View v) {

       EditText number = (EditText) findViewById(R.id.number1);

       Intent intent = new Intent();

       intent.putExtra("haoma", number.getText().toString());

       setResult(100, intent);

       finish();

   }

}

```


## AndroidManifest.xml


```xml

<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"

   package="com.example.myapplication">


   <application

       android:allowBackup="true"

       android:icon="@mipmap/ic_launcher"

       android:label="@string/app_name"

       android:roundIcon="@mipmap/ic_launcher_round"

       android:supportsRtl="true"

       android:theme="@style/Theme.MyApplication">

       <activity

           android:name=".anotherPick"

           android:label="anotherPick">

           <intent-filter android:label="anotherPick">

               <action android:name="abc"></action>

               <category android:name="android.intent.category.DEFAULT"></category>

           </intent-filter>

       </activity>

       <activity android:name=".PickContact"

           android:label="PickContact">

           <intent-filter android:label="PickContact">

               <action android:name="abc"></action>

               <category android:name="android.intent.category.DEFAULT"></category>

           </intent-filter>

       </activity>




       <activity android:name=".MainActivity">

           <intent-filter>

               <action android:name="android.intent.action.MAIN" />


               <category android:name="android.intent.category.LAUNCHER" />

           </intent-filter>

       </activity>

   </application>


</manifest>

```


## 总结:

 通过学习Activity和Intent完成一个简单的案例。

目录
相关文章
|
3天前
|
搜索推荐 Android开发 开发者
探索安卓开发中的自定义视图:打造个性化UI组件
【10月更文挑战第39天】在安卓开发的世界中,自定义视图是实现独特界面设计的关键。本文将引导你理解自定义视图的概念、创建流程,以及如何通过它们增强应用的用户体验。我们将从基础出发,逐步深入,最终让你能够自信地设计和实现专属的UI组件。
|
5天前
|
Android开发 Swift iOS开发
探索安卓与iOS开发的差异和挑战
【10月更文挑战第37天】在移动应用开发的广阔舞台上,安卓和iOS这两大操作系统扮演着主角。它们各自拥有独特的特性、优势以及面临的开发挑战。本文将深入探讨这两个平台在开发过程中的主要差异,从编程语言到用户界面设计,再到市场分布的不同影响,旨在为开发者提供一个全面的视角,帮助他们更好地理解并应对在不同平台上进行应用开发时可能遇到的难题和机遇。
|
7天前
|
XML 存储 Java
探索安卓开发之旅:从新手到专家
【10月更文挑战第35天】在数字化时代,安卓应用的开发成为了一个热门话题。本文旨在通过浅显易懂的语言,带领初学者了解安卓开发的基础知识,同时为有一定经验的开发者提供进阶技巧。我们将一起探讨如何从零开始构建第一个安卓应用,并逐步深入到性能优化和高级功能的实现。无论你是编程新手还是希望提升技能的开发者,这篇文章都将为你提供有价值的指导和灵感。
|
5天前
|
存储 API 开发工具
探索安卓开发:从基础到进阶
【10月更文挑战第37天】在这篇文章中,我们将一起探索安卓开发的奥秘。无论你是初学者还是有经验的开发者,这篇文章都将为你提供有价值的信息和建议。我们将从安卓开发的基础开始,逐步深入到更复杂的主题,如自定义组件、性能优化等。最后,我们将通过一个代码示例来展示如何实现一个简单的安卓应用。让我们一起开始吧!
|
6天前
|
存储 XML JSON
探索安卓开发:从新手到专家的旅程
【10月更文挑战第36天】在这篇文章中,我们将一起踏上一段激动人心的旅程,从零基础开始,逐步深入安卓开发的奥秘。无论你是编程新手,还是希望扩展技能的老手,这里都有适合你的知识宝藏等待发掘。通过实际的代码示例和深入浅出的解释,我们将解锁安卓开发的关键技能,让你能够构建自己的应用程序,甚至贡献于开源社区。准备好了吗?让我们开始吧!
18 2
|
7天前
|
Android开发
布谷语音软件开发:android端语音软件搭建开发教程
语音软件搭建android端语音软件开发教程!
|
15天前
|
编解码 Java Android开发
通义灵码:在安卓开发中提升工作效率的真实应用案例
本文介绍了通义灵码在安卓开发中的应用。作为一名97年的聋人开发者,我在2024年Google Gemma竞赛中获得了冠军,拿下了很多项目竞赛奖励,通义灵码成为我的得力助手。文章详细展示了如何安装通义灵码插件,并通过多个实例说明其在适配国际语言、多种分辨率、业务逻辑开发和编程语言转换等方面的应用,显著提高了开发效率和准确性。
|
14天前
|
Android开发 开发者 UED
安卓开发中自定义View的实现与性能优化
【10月更文挑战第28天】在安卓开发领域,自定义View是提升应用界面独特性和用户体验的重要手段。本文将深入探讨如何高效地创建和管理自定义View,以及如何通过代码和性能调优来确保流畅的交互体验。我们将一起学习自定义View的生命周期、绘图基础和事件处理,进而探索内存和布局优化技巧,最终实现既美观又高效的安卓界面。
27 5
|
12天前
|
JSON Java Android开发
探索安卓开发之旅:打造你的第一个天气应用
【10月更文挑战第30天】在这个数字时代,掌握移动应用开发技能无疑是进入IT行业的敲门砖。本文将引导你开启安卓开发的奇妙之旅,通过构建一个简易的天气应用来实践你的编程技能。无论你是初学者还是有一定经验的开发者,这篇文章都将成为你宝贵的学习资源。我们将一步步地深入到安卓开发的世界中,从搭建开发环境到实现核心功能,每个环节都充满了发现和创造的乐趣。让我们开始吧,一起在代码的海洋中航行!
|
13天前
|
缓存 数据库 Android开发
安卓开发中的性能优化技巧
【10月更文挑战第29天】在移动应用的海洋中,性能是船只能否破浪前行的关键。本文将深入探讨安卓开发中的性能优化策略,从代码层面到系统层面,揭示如何让应用运行得更快、更流畅。我们将以实际案例和最佳实践为灯塔,引领开发者避开性能瓶颈的暗礁。
33 3