安卓开发学习之简单的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完成一个简单的案例。

目录
相关文章
|
27天前
|
开发框架 前端开发 Android开发
安卓与iOS开发中的跨平台策略
在移动应用开发的战场上,安卓和iOS两大阵营各据一方。随着技术的演进,跨平台开发框架成为开发者的新宠,旨在实现一次编码、多平台部署的梦想。本文将探讨跨平台开发的优势与挑战,并分享实用的开发技巧,帮助开发者在安卓和iOS的世界中游刃有余。
|
29天前
|
缓存 前端开发 Android开发
安卓开发中的自定义视图:从零到英雄
【10月更文挑战第42天】 在安卓的世界里,自定义视图是一块画布,让开发者能够绘制出独一无二的界面体验。本文将带你走进自定义视图的大门,通过深入浅出的方式,让你从零基础到能够独立设计并实现复杂的自定义组件。我们将探索自定义视图的核心概念、实现步骤,以及如何优化你的视图以提高性能和兼容性。准备好了吗?让我们开始这段创造性的旅程吧!
26 1
|
1月前
|
搜索推荐 Android开发 开发者
探索安卓开发中的自定义视图:打造个性化UI组件
【10月更文挑战第39天】在安卓开发的世界中,自定义视图是实现独特界面设计的关键。本文将引导你理解自定义视图的概念、创建流程,以及如何通过它们增强应用的用户体验。我们将从基础出发,逐步深入,最终让你能够自信地设计和实现专属的UI组件。
|
14天前
|
搜索推荐 前端开发 API
探索安卓开发中的自定义视图:打造个性化用户界面
在安卓应用开发的广阔天地中,自定义视图是一块神奇的画布,让开发者能够突破标准控件的限制,绘制出独一无二的用户界面。本文将带你走进自定义视图的世界,从基础概念到实战技巧,逐步揭示如何在安卓平台上创建和运用自定义视图来提升用户体验。无论你是初学者还是有一定经验的开发者,这篇文章都将为你打开新的视野,让你的应用在众多同质化产品中脱颖而出。
40 19
|
27天前
|
IDE Java 开发工具
移动应用与系统:探索Android开发之旅
在这篇文章中,我们将深入探讨Android开发的各个方面,从基础知识到高级技术。我们将通过代码示例和案例分析,帮助读者更好地理解和掌握Android开发。无论你是初学者还是有经验的开发者,这篇文章都将为你提供有价值的信息和技巧。让我们一起开启Android开发的旅程吧!
|
14天前
|
JSON Java API
探索安卓开发:打造你的首个天气应用
在这篇技术指南中,我们将一起潜入安卓开发的海洋,学习如何从零开始构建一个简单的天气应用。通过这个实践项目,你将掌握安卓开发的核心概念、界面设计、网络编程以及数据解析等技能。无论你是初学者还是有一定基础的开发者,这篇文章都将为你提供一个清晰的路线图和实用的代码示例,帮助你在安卓开发的道路上迈出坚实的一步。让我们一起开始这段旅程,打造属于你自己的第一个安卓应用吧!
41 14
|
17天前
|
Java Linux 数据库
探索安卓开发:打造你的第一款应用
在数字时代的浪潮中,每个人都有机会成为创意的实现者。本文将带你走进安卓开发的奇妙世界,通过浅显易懂的语言和实际代码示例,引导你从零开始构建自己的第一款安卓应用。无论你是编程新手还是希望拓展技术的开发者,这篇文章都将为你打开一扇门,让你的创意和技术一起飞扬。
|
15天前
|
XML 存储 Java
探索安卓开发之旅:从新手到专家
在数字时代,掌握安卓应用开发技能是进入IT行业的关键。本文将引导读者从零基础开始,逐步深入安卓开发的世界,通过实际案例和代码示例,展示如何构建自己的第一个安卓应用。我们将探讨基本概念、开发工具设置、用户界面设计、数据处理以及发布应用的全过程。无论你是编程新手还是有一定基础的开发者,这篇文章都将为你提供宝贵的知识和技能,帮助你在安卓开发的道路上迈出坚实的步伐。
29 5
|
14天前
|
开发框架 Android开发 iOS开发
安卓与iOS开发中的跨平台策略:一次编码,多平台部署
在移动应用开发的广阔天地中,安卓和iOS两大阵营各占一方。随着技术的发展,跨平台开发框架应运而生,它们承诺着“一次编码,到处运行”的便捷。本文将深入探讨跨平台开发的现状、挑战以及未来趋势,同时通过代码示例揭示跨平台工具的实际运用。
|
15天前
|
XML 搜索推荐 前端开发
安卓开发中的自定义视图:打造个性化UI组件
在安卓应用开发中,自定义视图是一种强大的工具,它允许开发者创造独一无二的用户界面元素,从而提升应用的外观和用户体验。本文将通过一个简单的自定义视图示例,引导你了解如何在安卓项目中实现自定义组件,并探讨其背后的技术原理。我们将从基础的View类讲起,逐步深入到绘图、事件处理以及性能优化等方面。无论你是初学者还是有经验的开发者,这篇文章都将为你提供有价值的见解和技巧。