Android应用程序中的多个Activity的显示创建和调用

布局文件:

<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"
    android:orientation="vertical"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="openActivity"
        android:text="开启第二个Activity" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="openSystemActivity"
        android:text="开启系统的Activity" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="checkConnection"
        android:text="检测网络状态" />

</LinearLayout>

主Activity的代码

package com.examp.manyactivity;

import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;

/**
 * 案例演示的是显示的激活Activity
 *
 * @author MartinDong
 *
 */
public class MainActivity extends Activity {

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

	/**
	 * 用户想要打开第二个界面的时候
	 *
	 * @param view
	 */
	public void openActivity(View view) {
		// 创建意图对象
		Intent intent = new Intent();
		// 方便调用setComponent与一个明确的类名。
		// 相当于创建了一个新的组件
		// 会话位置|指定要激活的具体的Activity
		intent.setClassName(this, "com.examp.manyactivity.SecondActivity");
		// 第二种方式,是在创建意图对象的时候进行指定Activity
		// Intent intent2 = new Intent(this, SecondActivity.class);

		// 激活一个Activity
		startActivity(intent);
	}

	/**
	 * 开启系统中的Activity<br>
	 * 案例演示的是开启图库的Activity
	 *
	 * @param view
	 */
	public void openSystemActivity(View view) {

		/*
		 * 05-31 07:42:44.581: I/ActivityManager(150): START
		 * {act=android.intent.action.MAIN
		 * cat=[android.intent.category.LAUNCHER] flg=0x10200000
		 * cmp=com.android.gallery/com.android.camera.GalleryPicker u=0} from
		 * pid 282
		 */

		Intent intent = new Intent();
		intent.setClassName("com.android.gallery",
				"com.android.camera.GalleryPicker");
		startActivity(intent);

	}

	/**
	 * 检测网路状态
	 *
	 * @param view
	 */
	public void checkConnection(View view) {
		/*
		 * 05-31 08:03:01.848: I/ActivityManager(150): START
		 * {act=android.intent.action.MAIN cmp=com.android.settings/.SubSettings
		 * (has extras) u=0} from pid 306 由于这里4.0的网络的管理需要传入附加数据,本功能使用2.3的虚拟机<br>
		 * 05-31 08:05:47.072: I/ActivityManager(61): Starting: Intent {
		 * act=android.intent.action.MAIN
		 * cmp=com.android.settings/.WirelessSettings } from pid 168
		 */
		// 检测网路的连接状态
		// 创建连接管理对象
		ConnectivityManager cm = (ConnectivityManager) this
				.getSystemService(Context.CONNECTIVITY_SERVICE);
		// 需要的权限 android.Manifest.permission.ACCESS_NETWORK_STATE
		// 获取网络的连接信息
		NetworkInfo info = cm.getActiveNetworkInfo();
		// 如果没有任何的网络信息info为null;
		if (info != null && info.isConnected()) {
			Toast.makeText(this, "网络可用......", Toast.LENGTH_SHORT).show();
		} else {
			Toast.makeText(this, "网不可用,请设置......", Toast.LENGTH_SHORT).show();
			Intent intent = new Intent();
			intent.setClassName("com.android.settings",
					"com.android.settings.WirelessSettings");
			startActivity(intent);
		}

	}
}

第二个Activity文件:

package com.examp.manyactivity;

import android.app.Activity;
import android.os.Bundle;

/**
 * 自定义的Activity<br>
 * 必须要继承Activity<br>
 * Activity是系统的四大组件之一<br>
 * 操作系统想要找到Activity就必须在清单文件AndroidManifest.xml进行注册<br>
 *
 *
 * @author MartinDong
 *
 */
public class SecondActivity extends Activity {

	/**
	 * 一般都会重写的方法,用途大都是初始化一些数据,和程序的界面<br>
	 * Activity创建的时候进行调用
	 */
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		// 设置显示的布局
		setContentView(R.layout.activity_tow);

	}

}

第二个Activity对应的布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <RatingBar
        android:id="@+id/ratingBar1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <RatingBar
        android:id="@+id/ratingBar2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <CheckedTextView
        android:id="@+id/checkedTextView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="CheckedTextView" />

    <Spinner
        android:id="@+id/spinner1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <ProgressBar
        android:id="@+id/progressBar1"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <ProgressBar
        android:id="@+id/progressBar2"
        style="?android:attr/progressBarStyleLarge"
        android:layout_width="246dp"
        android:layout_height="match_parent" />

</LinearLayout>

清单文件的配置:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.examp.manyactivity"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="18" />

    <!-- icon:指定应用程序的图标;label:指定应用程序的名称; -->
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

        <!-- Activity的注册 -->
        <!-- 如果Activity不进行icon,label的设置,那么将默认的使用应用application的icon,label 的设置 -->
        <!-- name指定的是布局文件对应的Activity类 -->
        <activity
            android:name="com.examp.manyactivity.MainActivity"
            android:label="@string/app_name" >

            <!--  -->
            <intent-filter>

                <!-- 告诉Android的系统这是应用的主界面 -->
                <action android:name="android.intent.action.MAIN" />
                <!-- 告诉Android的系统创建一个应用图标 -->
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.examp.manyactivity.SecondActivity"
            android:label="@string/app_name" >
        </activity>
    </application>

</manifest>

注:本案例的网络查看状态只能在2.3的模拟器上使用;

Demo源码下载:

http://download.csdn.net/detail/u011936142/7429455

Android应用程序中的多个Activity的显示创建和调用,布布扣,bubuko.com

时间: 2024-10-25 14:01:54

Android应用程序中的多个Activity的显示创建和调用的相关文章

Android在程序中浏览网页

本文是自己学习所做笔记,欢迎转载.但请注明出处:http://blog.csdn.net/jesson20121020 有时须要在程序中浏览一些网页.当然了能够通过调用系统的浏览器来打开浏览.可是大多数情况下,这样的方式并不适用.   以下给出怎样在程序中浏览网页.先看效果图: 事实上,这里主要是利用了WebView控件及它的一些方法.   通过WebView的loadUrl(String url)能够装载指定的地址的网页内容,并显示在控件中,上一页和下一页的功能分别相应于WebView的goB

在 Android 应用程序中使用 SQLite 数据库以及怎么用

part one : android SQLite 简单介绍 SQLite 介绍 SQLite 一个非常流行的嵌入式数据库.它支持 SQL 语言,而且仅仅利用非常少的内存就有非常好的性能.此外它还是开源的,不论什么人都能够使用它.很多开源项目((Mozilla, PHP, Python)都使用了 SQLite. SQLite 由下面几个组件组成:SQL 编译器.内核.后端以及附件.SQLite 通过利用虚拟机和虚拟数据库引擎(VDBE).使调试.改动和扩展 SQLite 的内核变得更加方便. 图

如何在Android应用程序中使用传感器(OpenIntents开源组织SensorSimulator项目)

原文地址http://blog.sina.com.cn/s/blog_621c16b101013ygl.html OpenIntents项目和可用资源介绍 [1].    项目介绍:OpenIntents项目的目的是提供一些开源的意图和接口,通过一些可以重用的组件让移动应用程序更加紧密的在一起工作.而且对于这些开源的项目,OpenIntents组织都会提供相应的源代码和示例程序展示项目如何使用. [2].     项目资源:免费开放源代码下载地址在 www.openintents.org;讨论区

如何在Android应用程序中使用传感器模拟器SensorSimulator

原文地址; 如何在Android应用程序中使用传感器模拟器 - 移动平台应用软件开发技术 - 博客频道 - CSDN.NET http://blog.csdn.net/pku_android/article/details/7596864   (OpenIntents开源项目SensorSimulator) 1.      OpenIntents项目和可用资源介绍 [1].    项目介绍:OpenIntents项目的目的是提供一些开源的意图和接口,通过一些可以重用的组件让移动应用程序更加紧密的

Android技术17:Android应用程序中执行二进制命令

Android系统底层为Liunx内核,内核中有大量的可执行的二进制文件,system/bin目录下面,如下图 我们都知道在Linux命令窗口中可以执行上述命令,但是在Android应用程序中是如何调用该命令呢? 1.获取当前Runtime Runtime.getRuntime(); 2.执行命令 例如执行ps 查看进程信息 Process precess=Runtime.getRuntime().exec("ps"); 3.获取内容 InputStream is=precess.ge

在Android应用程序中实现推送通知

几乎每一个应用程序的一个重要特性是支持推送通知的能力.使用推送通知,您可以更新用户,而不需要应用程序在任何时候运行或轮询服务器, 避免潜在的电池电量不足. 随着火力点云信息的介绍(FCM),谷歌使得在Android应用程序中实现推送通知变得容易了一点.FCM是谷歌云消息(GCM)的新版本和改进版本,您可以使用它将远程通知发送到客户机应用程序.对于将瞄准多个平台或需要利用先进的推操作(如分段推送)的应用程序,我们可以使用带有Azure通知集线器的FCM. 与GCM不同,FCM负责为您提供基本的消息

网格视图在Android应用程序中的使用

网格视图是在应用程序中比较常见的视图. 首先介绍一下GridView类,GridView类位于android.widget包下,该视图是将其他空间以二维格式显示到表格中的,而这些控件全部来自于ListAdapter适配器. GridView类的属性同样有两种配置方式,即XML属性配置和Java代码中配置.如表中列出了常见的属性和方法. 其次,介绍一下网格视图的使用,下面将通过一个完整的案列详细介绍网格视图的使用方法,在该案例中同样列出了各个动漫名人,包括其照片及描述,案例的开发步骤如下: 创建一

Android 在程序中关闭和打开屏幕

需求:在程序中(通过事件等方式)打开和关闭屏幕 思路:一般情况下,关闭屏幕不是将屏幕真的关闭,而是将屏幕的亮度调到最低.一般情况下Android设备对屏幕可             调节的最低亮度是有一个限制的.如果你的设备真的允许完全关闭屏幕,则只能考虑为这款设备的特性,在你             写程序时是要考虑到大多数设备的. 实现: //启用屏幕常亮功能 private void turnOnScreen() { WindowManager.LayoutParams params =

Android获得栈中最顶层的Activity

1 /** 2 * 获得栈中最顶层的Activity 3 * 4 * @param context 5 * @return 6 */ 7 public String getTopActivity(Context context) 8 { 9 android.app.ActivityManager manager = (android.app.ActivityManager) context.getSystemService(context.ACTIVITY_SERVICE); 10 List<A