本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
- kingwell.leng
最新文章列表
android Intents和Intent Filters - 开发文档翻译 - 1
由于本人英文能力实在有限,不足之初敬请谅解
本博客只要没有注明“转”,那么均为原创,转贴请注明本博客链接链接
android 进程与线程 - 开发文档翻译 - 进程
android 进程与线程 - 开发文档翻译 - 线程
其他系列的翻译
android activity开发文档翻译 - 1 - 基础篇
android activity开发文档翻译 - 2 - 生命周期篇
android的action
[b][/b][b]android intent和intent action大全
android 中intent是经常要用到的。不管是页面牵转,还是传递数据,或是调用外部程序,系统功能都要用到intent。在做了一些intent的例子之后,整理了一下intent,希望对大家有用。由于intent内容太多,不可能真的写全,难免会有遗落,以后我会随时更新。如果你们有疑问或新的intent内容,希望交流 ...
Andriod学习之Activity
一:概述
1.Activity是一个控件的容器,控件需要在布局文件中声明,在Activity中利用控件的ID使用。
2.Activity是一个类,需要继承自类Activity。
3.Activity需要重写onCreate()方法。
4.Activity需要在Manifest中注册。
5.多个Activity之间的关系:startActivity(Intent intent)
6.intent:是一 ...
android intent activity参数传递
1.java
Intent intent=new Intent(MainActivity.this,SecondActivity.class);
Bundle bundle=new Bundle();
bundle.putString("mainstr", "第一个activity的内容");
...
android task与back stack 开发文档翻译 - 3
由于本人英文能力实在有限,不足之初敬请谅解
本博客只要没有注明“转”,那么均为原创,转贴请注明链接
android task与back stack 开发文档翻译 - 1
android task与back stack 开发文档翻译 - 2
android task与back stack 开发文档翻译 - 3
andling affinities
处理affini ...
android task与back stack 开发文档翻译 - 2
由于本人英文能力实在有限,不足之初敬请谅解
本博客只要没有注明“转”,那么均为原创,转贴请注明链接
android task与back stack 开发文档翻译 - 1
android task与back stack 开发文档翻译 - 2
android task与back stack 开发文档翻译 - 3
Managing Tasks
管理task
...
退出整个程序(有多个activity)
如果一个app中 你已经启动了多个, 但是在当前这个activity想关掉这个app所有的activity的话
Intent intent=new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_HOME);
...
android task与back stack 开发文档翻译 - 1
由于本人英文能力实在有限,不足之初敬请谅解
本博客只要没有注明“转”,那么均为原创,转贴请注明链接
android task与back stack 开发文档翻译 - 1
android task与back stack 开发文档翻译 - 2
android task与back stack 开发文档翻译 - 3
Task和Back Stack
An application ...
通过Intent action 跳转到系统页面
1.调用系统的拨打号界面
Intent intent = new Intent();
intent.setAction(Intent.ACTION_NEW_OUTGOING_CALL);
startActivity(intent);
2.拨打紧急电话
Intent intent = new Intent();
intent.setAc ...
Android之intents and intentFilters
Intent:
在Android系统中,Intent是非常重要的一个概念,它是启动activity、service、broadcast这三大组件关键信息。那什么是Intent呢?SDK doc中是这样定义的:引用An Intent object is a bundle of information. It contains information of interest to the compon ...
Android 关闭所有Activity完全退出程序方法
Intent startMain = new Intent(Intent.ACTION_MAIN);
startMain.addCategory(Intent.CATEGORY_HOME); startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
st ...
Intent小应用:打电话
Intent小应用:打电话
MainActivity:
package com.amaker.call;
import android.app.Activity;
import android.content.Intent;
import android.database.Cursor;
import android.net.Uri;
import android.os.Bundl ...
Intent 直接法、间接法实现界面的跳转
一、Intent的组成部分:
action 动作
data 数据
category 分类
type 类型
component 组件
Extra 扩展信息
二、Intent 寻找目标组件的方法:
1,通过组件名直接指定
2,通过intent-filter过滤指定
Demo:
package com.amaker.intent;
import android.app.Activity; ...
【转】Intent传值
Intent intent = new Intent();
intent.setClass(helloworld.this,android2.class);//helloworld.class为Activity,android2.class为Activity。
intent.putExtra("name", "传值测试!");//设置传递内容。
s ...