Android 应用程序

标签: android 应用程序 | 发表时间:2012-10-27 08:07 | 作者:andyhuabing
出处:http://blog.csdn.net

Android 应用程序由四个模块构造而成:Activity、Intent 、Content Provider 、Service

下面简单介绍一下如下模块的含义:


1、Activity  "活动"
一个Activity就是单独的屏幕,每一个活动都被实现为一个独立的类,并且从活动基类中继承而来,活动类将会显示由视图控件组成的用户接口并对事件作出响应。代表一个用户能看到的屏幕,主要用于处理应用程序的整体性工作--如系统事件,用户显示等各种显示设计。

2、Intent  "请求"
用于不同的Activity之间切换使用,用于描述应用的功能。
其描述结构中,最重要的两个部分:动作(MAIN,VIEW,PICK,EDIT etc)及动作所对应的数据(URI..)

3、Content Provider 
用于将数据存储于文件及SQLITE数据库中或者其它有效设备中。提供应用数据与其它应用共享时使用。

4、Seriver "服务"
生命周期长但没有用户界面的程序,可一直在系统中执行,为多个客户端提供服务。

下面给出将这几者同时使用的例子,加入这些概念的理解与使用:


首先建立三个java文件,代码分别为:

主的Acitivy应用:

package com.example.com.test.app;

import android.os.Bundle;
import android.provider.ContactsContract;
import android.provider.ContactsContract.PhoneLookup;
import android.app.Activity;
import android.content.ContentResolver;
import android.content.Intent;
import android.database.Cursor;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;

public class MainActivity extends Activity {
	private final static String TAG = "MainActivity";
	
	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);			
		
		/* 设置显示main.xml布局 */
		setContentView(R.layout.activity_main);
		
		/* findViewById(R.id.button1)取得布局main.xml中的button1 */
		Button button = (Button) findViewById(R.id.button1);
		/* 监听button的事件信息 */
		button.setOnClickListener(new Button.OnClickListener() {
			public void onClick(View v) {
				/* 新建一个Intent对象 */
				Intent intent = new Intent();
				/* 指定intent要启动的类 */
				intent.setClass(MainActivity.this, SecondActivity.class);
				/* 启动一个新的Activity */
				startActivity(intent);
				/* 关闭当前的Activity */
				MainActivity.this.finish();
			}
		});
		
		//从main.xml布局中获得Button对象
		Button button_start = (Button)findViewById(R.id.PlayMusic);
		Button button_stop  = (Button)findViewById(R.id.StopMusic);
		Button button_cp    = (Button)findViewById(R.id.CProvider);
		
		//设置按钮(Button)监听
		button_start.setOnClickListener(startplay);
        button_stop.setOnClickListener(stopplay);
        button_cp.setOnClickListener(cplisten);
	}
	
	// 开始播放
	private OnClickListener startplay = new OnClickListener() {
		public void onClick(View v) {
			// 开启Service
			startService(new Intent("com.test.Android.MUSIC"));
		}
	};
	
	// 停止播放
	private OnClickListener stopplay = new OnClickListener() {
		public void onClick(View v) {
			// 停止Service
			stopService(new Intent("com.test.Android.MUSIC"));
		}
	};
	
	// 测试 Content Provider
	private OnClickListener cplisten = new OnClickListener() {
		public void onClick(View v) {
			String string = "";	
			
			//得到ContentResolver对象
	        ContentResolver cr = getContentResolver();  
	        //取得电话本中开始一项的光标
	        Cursor cursor = cr.query(ContactsContract.Contacts.CONTENT_URI, null, null, null, null);
			
	        // 向下移动一下光标
			while (cursor.moveToNext()) {
				// 取得联系人名字
				int nameFieldColumnIndex = cursor
						.getColumnIndex(PhoneLookup.DISPLAY_NAME);
				String contact = cursor.getString(nameFieldColumnIndex);
				// 取得电话号码
				int numberFieldColumnIndex = cursor
						.getColumnIndex(PhoneLookup.NUMBER);
				String number = null; //cursor.getString(numberFieldColumnIndex);

				string += (contact + ":" + number + "\n");
				Log.i(TAG,"telephone string: " + string );
			}
			
			cursor.close();
	        
			//设置TextView显示的内容
			DisplayText(string);
		}
	};
	
	/* 显示Toast */
	private void DisplayText(String str) {
		Toast.makeText(this, str, Toast.LENGTH_SHORT).show();
	}
}

切换的Activity应用:

package com.example.com.test.app;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class SecondActivity extends Activity{
	@Override
	public void onCreate(Bundle savedInstanceState)
	{
		super.onCreate(savedInstanceState);
		/* 设置显示second.xml布局 */
		setContentView(R.layout.activity_second);
		
		/* findViewById(R.id.button1)取得布局main.xml中的button1 */
		Button button = (Button) findViewById(R.id.button1);
		/* 监听button的事件信息 */
		button.setOnClickListener(new Button.OnClickListener() {
			public void onClick(View v)
			{
				/* 新建一个Intent对象 */
				Intent intent = new Intent();
				/* 指定intent要启动的类 */
				intent.setClass(SecondActivity.this, MainActivity.class);
				/* 启动一个新的Activity */
				startActivity(intent);
				/* 关闭当前的Activity */
				SecondActivity.this.finish();
			}
		});
	}	
}

后台Service服务程序:

package com.example.com.test.app;

import android.app.Service;
import android.content.Intent;
import android.media.MediaPlayer;
import android.os.IBinder;

public class MusicService extends Service {
	// MediaPlayer对象
	private MediaPlayer player = null;

	public IBinder onBind(Intent arg0) {
		return null;
	}

	public void onStart(Intent intent, int startId) {
		super.onStart(intent, startId);
		// 这里可以理解为装载音乐文件
		player = MediaPlayer.create(this, R.raw.jiangnanstyle);
		// 循环播放
		player.setLooping(true);
		// 开始播放
		player.start();
	}

	public void onDestroy() {
		super.onDestroy();
		// 停止音乐-停止Service
		player.stop();
	}
}

AndroidManifest.xml应用中全局描述文件:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.com.test.app"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="10"
        android:targetSdkVersion="15" />
    
    ##### 可以访问的权限设定
    <uses-permission 
	android:name="android.permission.READ_CONTACTS">
	</uses-permission>
	
    <application android:icon="@drawable/ic_launcher" android:label="@string/app_name">
        #### 主Activity
        <activity
            android:name=".MainActivity"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        
        #### 次Activity
        <activity android:name="SecondActivity"></activity>
        
        #### 服务Service
        <service android:name=".MusicService">
          <intent-filter>
              <action android:name="com.test.Android.MUSIC" />
              <category android:name="android.intent.category.default" />
          </intent-filter>
        </service>
                
    </application>

</manifest>

资源相关文件:

layout 文件夹

activity_main.xml  内容:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="fill_parent">

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        tools:context=".MainActivity" />

    <Button
        android:id="@+id/PlayMusic"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/textView1"
        android:layout_alignParentLeft="true"
        android:layout_marginBottom="52dp"
        android:layout_marginLeft="22dp"
        android:text="播放MP3音乐" />

    <Button
        android:id="@+id/button1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/PlayMusic"
        android:layout_alignParentLeft="true"
        android:layout_marginBottom="67dp"
        android:layout_marginLeft="22dp"
        android:text="switch Second Activity" />

    <Button
        android:id="@+id/StopMusic"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/textView1"
        android:layout_alignBottom="@+id/textView1"
        android:layout_alignLeft="@+id/PlayMusic"
        android:text="停止播放MP3音乐" />

    <Button
        android:id="@+id/CProvider"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/StopMusic"
        android:layout_below="@+id/textView1"
        android:layout_marginTop="94dp"
        android:text="Content Provider Test" />

</RelativeLayout>

activity_second.xml 内容:

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

    <Button
        android:id="@+id/button1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_marginTop="45dp"
        android:text="switch Main Activity" />

</RelativeLayout>

新建了一个 res\raw 用于存放与应用一起打包的mp3文件:jiangnanstyle.mp3  江南Style,呵呵,最流行的音乐哟。


作者:andyhuabing 发表于2012-10-27 8:40:01 原文链接
阅读:8 评论:0 查看评论

相关 [android 应用程序] 推荐:

Android 应用程序

- - CSDN博客推荐文章
Android 应用程序由四个模块构造而成:Activity、Intent 、Content Provider 、Service. 下面简单介绍一下如下模块的含义:. 1、Activity  "活动". 一个Activity就是单独的屏幕,每一个活动都被实现为一个独立的类,并且从活动基类中继承而来,活动类将会显示由视图控件组成的用户接口并对事件作出响应.

Android 一个应用程序调用另一个应用程序

- - CSDN博客推荐文章
实现行业应用调用我们可以Get到哪些技能. * Activity的singleTask的启动模式 * 界面跳转的基本实现 * 前台Service的基本介绍和实现 * SharedPreference的简单用法. 在XHL应用程序中去调用MPos应用程序,借助MPos的一些界面完成特殊的功能. (1)创建名为XHL的应用程序.

Eclipse开发Android应用程序入门

- Bingnan - 酷壳 - CoolShell.cn
原文出处:http://www.smashingmagazine.com/2010/10/25/get-started-developing-for-android-with-eclipse/. 如今的移动设备应用程序开发充满着让人振奋的东西. 功能强大的硬件支持,平板电脑,多样的软件平台(塞班 OS,iOS,WebOS,Windows Phone 7…),移动设备开发者前景充满了机会和挑战.

android应用程序线程的监控

- - CSDN博客推荐文章
所以就开始研究起来,经过半天的模式总用有点启发,下面就简单介绍一个简单的线程监控:. DDMS是一款Google* 提供的应用,可作为独立的工具运行,也可通过ADT Eclipse* 插件集成到Eclipse* 中. 它提供了强大的特性集合,能帮助您快速了解应用的运行状况. 线程更新DDMS中的线程监控和评测浏览对于管理大量线程的应用很有用.

10款在Google labs诞生的Android应用程序

- HUan - cnBeta.COM
Google研究部门的高级副总裁Bill Coughran通过Google博客表示公司将关闭Google labs,因为Google打算集中资源开发重点项目. Google计划先结束所有实验,然后着重开发那些已成形的产品. 这并不意味着Google停止了一切创新活动,Google员工依旧会花时间进行“宠物计划”(就是工程师每周有一天时间将自己最疯狂的想法付诸实践),同时也会继续开发新产品,但是会终止所有实验室项目.

【外刊IT评论】如何发布你的Android应用程序

- 旺旺 - 外刊IT评论网
本文是从 Some Things To Know About Publishing Android Apps 这篇文章翻译而来. 到目前为止,在Android交易市场(Android Market)里,已经有我的2个应用程序了,所以,我想写出一点关于Android应用程序发布过程的东西,用来告诉那些想发布自己的应用程序的朋友们,在发布过程中会遇到哪些的事情.

Android应用程序需不需要手动退出?

- Jackie - 互联网的那点事
不止一次,也不止一个人问过这个问题. 我们不妨从了解这个系统对于应用程序管理的一些内部机制开始说明原因. 对于Android系统而言,包含“进程”和“服务”. “进程”有正在运行的,也有刚刚离开在后台缓存的. “服务”是一个无界面、长时间运行的应用功能,并且不会轻易被终止. 我们知道,在Android中可以快速通过主页键(home)或者使用返回键(←)逐步离开应用程序.

Android应用程序是否需要手动退出

- Tomy - Tech2IPO
不止一次,也不止一个人问过这个问题. 我们不妨从了解这个系统对于应用程序管理的一些内部机制开始说明原因. 对于Android系统而言,包含“进程”和“服务”. “进程”有正在运行的,也有刚刚离开在后台缓存的. “服务”是一个无界面、长时间运行的应用功能,并且不会轻易被终止. 我们知道,在Android中可以快速通过主页键(home)或者使用返回键(←)逐步离开应用程序.

Android应用程序需不需要手动退出?

- jk - 网易用户体验设计中心博客
不止一次,也不止一个人问过这个问题. 我们不妨从了解这个系统对于应用程序管理的一些内部机制开始说明原因. 对于Android系统而言,包含”进程”和”服务”. ”进程”有正在运行的,也有刚刚离开在后台缓存的. ”服务”是一个无界面、长时间运行的应用功能,并且不会轻易被终止. 我们知道,在Android中可以快速通过主页键(home)或者使用返回键(←)逐步离开应用程序.