package com.sbs.aas2l;import android.app.Activity;import android.os.Bundle;import android.view.View;import android.view.View.OnClickListener;import an...
分类:
其他好文 时间:
2014-07-07 16:27:15
阅读次数:
161
intent的简单用法案例一传值:Intent intent=new Intent();intent.putExtra("extra", "这是页面一传来的值!");intent.setClass(Test_for_intentActivity.this, actpage2.class);start...
分类:
移动开发 时间:
2014-07-07 16:23:06
阅读次数:
322
import android.app.Activity;import android.app.AlertDialog;import android.app.Dialog;import android.content.DialogInterface;import android.os.Bundle;i...
分类:
其他好文 时间:
2014-07-07 15:18:20
阅读次数:
237
RadioGroup 有时候比較实用.主要特征是给用户提供多选一机制。MainActivity.javapackage com.example.lesson16_radio;import android.app.Activity;import android.os.Bundle;import and...
分类:
移动开发 时间:
2014-07-01 21:40:58
阅读次数:
283
部署环境是windowsxp首先从 http://nexus.sonatype.rog/downloads 下载最新版的Nexus我们可以根据个人的需求下载。里面有nexus-webapp-1.9.2.3-bundle.zip等其他系统运行的压缩文件 或者war包nexus-webapp-1.9.2...
分类:
其他好文 时间:
2014-07-01 20:49:07
阅读次数:
247
An Intent is a messaging object you
can use to request an action from another app component. Although intents facilitate communication
between components in several ways, there are three fundament...
分类:
其他好文 时间:
2014-07-01 08:54:18
阅读次数:
414
An Intent is a messaging object you
can use to request an action from another app component. Although intents facilitate communication
between components in several ways, there are three fundament...
分类:
其他好文 时间:
2014-06-30 19:28:20
阅读次数:
225
Android系统原本就为手机设计,所以,在android系统中的任何App中,只要愿意,拨打指定电话非常方便。
核心就是使用Intent跳转,指定请求Action为Intent.ACTION_CALL 即可。
【源码下载】 http://www.code4apk.com/android-code/178
核心代码如下:
1
Intent
...
分类:
移动开发 时间:
2014-06-30 09:44:24
阅读次数:
246
源代码下载
Bundle是什么?
Bundle是一个标准的jar,只是在META-INF/MANIFEST.MF中加入Bundle元数据的描述
Bundle元数据
标识
Bundle-ManifestVersion: 2
Bundle-Name: student-model
Bundle-SymbolicName:...
分类:
其他好文 时间:
2014-06-30 06:31:34
阅读次数:
232