E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
setFlags
Android程序完全退出
有几个activity,有一需求是在一个activityA点击back键退出系统而不是跳到之前的activity 首先想到的是清空activityA的堆栈,使用intent.
setFlags
(Intent.FLAG_ACTIVITY_CLEAR_TOP
eric_zhang
·
2011-08-08 18:00
android程序完全退出
两个Activities之间的数据传递问题解决1
/MainActivity mSearchBtn.setOnClickListener(newOnClickListener(){ publicvoidonClick(Viewv){ intent.
setFlags
ouyangtianhan
·
2011-08-06 17:00
Android Activity 常用功能设置(全屏、横竖屏等)
全屏设置方式1:AndroidManifest.xml方式2:代码实现requestWindowFeature(Window.FEATURE_NO_TITLE); // 隐藏标题栏getWindow().
setFlags
sunboy_2050
·
2011-08-05 09:00
android
设置Android程序全屏
在setContentView(R.layout.main)之前加入两段代码requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().
setFlags
BenW1988
·
2011-08-02 15:00
android
android 全屏、隐藏标题、横屏显示方法
1.全屏显示注:要在setContentView()前使用requestWindowFeature(Window.FEATURE_NO_TITLE);//隐藏标题 getWindow().
setFlags
huyanruirui
·
2011-07-27 22:41
android
移动开发
全屏
横屏
隐藏标题
Android 强制设置横屏或竖屏 设置全屏
方法中的setContentView(myview)调用之前添加下面代码requestWindowFeature(Window.FEATURE_NO_TITLE);//隐藏标题getWindow().
setFlags
lishuai05251986
·
2011-07-27 11:53
Android
Android 强制设置横屏或竖屏 设置全屏
setContentView(myview)调用之前添加下面代码 requestWindowFeature(Window.FEATURE_NO_TITLE);//隐藏标题 getWindow().
setFlags
shuai1234
·
2011-07-27 11:00
android
Android 强制设置横屏或竖屏 设置全屏
方法中的setContentView(myview)调用之前添加下面代码requestWindowFeature(Window.FEATURE_NO_TITLE);//隐藏标题getWindow().
setFlags
jimmy_小静
·
2011-07-27 10:33
android
application
encoding
user
action
java
android
Android 强制设置横屏或竖屏 设置全屏
方法中的setContentView(myview)调用之前添加下面代码requestWindowFeature(Window.FEATURE_NO_TITLE);//隐藏标题 getWindow().
setFlags
yuejingjiahong
·
2011-07-27 10:00
java
android
user
application
action
encoding
android 实现全屏幕
savedInstanceState); //去掉标题栏 this.requestWindowFeature(Window.FEATURE_NO_TITLE); //去掉信息栏 this.getWindow().
setFlags
cheney_love
·
2011-07-26 08:00
android
android 设置全屏
android.R.style.Theme_Black_NoTitleBar_Fullscreen);requestWindowFeature(Window.FEATURE_NO_TITLE);getWindow().
setFlags
mzz5240
·
2011-07-19 14:00
android
区分Activity的四种加载模式----以及Intent的
setFlags
转载来源——http://marshal.easymorse.com/archives/2950 在多Activity开发中,有可能是自己应用之间的Activity跳转,或者夹带其他应用的可复用Activity。可能会希望跳转到原来某个Activity实例,而不是产生大量重复的Activity。这需要为Activity配置特定的加载模式,而不是使用默认的加载模式。加载模式分类及在哪里配置Acti
liudan10
·
2011-07-15 14:00
去掉android程序的任务栏
getWindow().
setFlags
(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN
paulluo0739
·
2011-07-15 13:00
android
任务
4. android 设置全屏且无标题
requestWindowFeature(Window.FEATURE_NO_TITLE);//无标题getWindow().
setFlags
(WindowManager.LayoutParams.FLAG_FULLSCREEN
jamesliulyc
·
2011-07-14 10:00
android
android study
全屏显示,取消标题栏和状态栏requestWindowFeature(Window.FEATURE_NO_TITLE);//取消标题 getWindow().
setFlags
(WindowManager.LayoutParams.FLAG_FULLSCREEN
zhouYunan2010
·
2011-07-13 21:00
android
android 退出全部activity的方法
IntentstartMain=newIntent(Intent.ACTION_MAIN); startMain.addCategory(Intent.CATEGORY_HOME); startMain.
setFlags
IT___LaDeng
·
2011-07-13 09:00
2011.07.08(2)——— android 背景模糊
2011.07.08(2)——— android 背景模糊 详见:apiDemos/app/activity/Translucent Blur 背景模糊处理: getWindow().
setFlags
lipeng88213
·
2011-07-08 11:00
android
2011.07.08(2)——— android 背景模糊
2011.07.08(2)——— android 背景模糊 详见:apiDemos/app/activity/Translucent Blur 背景模糊处理: getWindow().
setFlags
lipeng88213
·
2011-07-08 11:00
android
android上一些方法的区别和用法的注意事项
Intent中的addflags()和
setflags
()的区别 addflags():Add additional flags to the intent (or with existing flags
haya
·
2011-07-07 10:00
android
intent
onDraw
measure
把自己的程序切入后台
Intentintent=newIntent(Intent.ACTION_MAIN); intent.addCategory(Intent.CATEGORY_HOME); intent.
setFlags
BuleRiver
·
2011-07-05 18:00
Android开发技术之──隐藏标题栏和状态栏
requestWindowFeature(Window.FEATURE_NO_TITLE); 二、隐藏状态栏 // 隐藏状态栏 this .getWindow().
setFlags
pjk1129
·
2011-07-04 09:00
android回到桌面的方法
Intent i = new Intent(Intent.ACTION_MAIN); i.
setFlags
(Intent.FLAG_ACTIVITY_NEW_TASK); i.addCategory
Darar
·
2011-07-01 11:00
android
TranslucentBlur
publicclassAextendsActivity{ @Override protectedvoidonCreate(Bundleicicle){ super.onCreate(icicle); getWindow().
setFlags
yan_daoqiu
·
2011-06-29 10:00
android
layout
application
action
encoding
动态设置全屏,退出全屏
privatevoidsetFullScreen(){ getWindow().
setFlags
(WindowManager.LayoutParams.FLAG_FULLSCREEN,
hustpzb
·
2011-06-15 11:00
layout
设置全屏
拿到了楼主的代码,知道原因了,楼主通过以下方法设置的全屏:getWindow().
setFlags
(WindowManager.LayoutParams.
zhang247124629
·
2011-06-10 12:00
xml
android
Android Intent用法详解
如果是从BroadcastReceiver 启动一个新的Activity , 不要忘记i.
setFlags
(Intent.FLAG_ACTIVITY_NEW_TASK); public class MyReceiver
shuai1234
·
2011-06-09 11:00
android
Google
F#
【6.8】模拟home键的效果
一般都应用到Service中,注意要设置Flags Intent i= new Intent(Intent.ACTION_MAIN); //模拟按下home键 i.
setFlags
火神曲
·
2011-06-08 14:00
home
android之应用程序退到android桌面的实现
: Intent intent=new Intent(Intent.ACTION_MAIN); intent.addCategory(Intent.CATEGORY_HOME); intent.
setFlags
寻梦者
·
2011-06-07 15:00
android
Android 实现 Activity后台运行
第一种方法Intentintent=newIntent(Intent.ACTION_MAIN);intent.addCategory(Intent.CATEGORY_HOME);intent.
setFlags
shunzi19860518
·
2011-06-03 20:00
android
应用程序返回到桌面
homeIntent.setAction(Intent.ACTION_MAIN); homeIntent.addCategory(Intent.CATEGORY_HOME); homeIntent.
setFlags
hsx9566
·
2011-06-02 15:00
android
Android代码实现关机重启
Intent.ACTION_REQUEST_SHUTDOWN); shutdown.putExtra(Intent.EXTRA_KEY_CONFIRM, false); shutdown.
setFlags
aichixihongshi
·
2011-06-01 23:00
android
关机重启
Android Activity去除标题栏和状态栏
savedInstanceState);//去除titlerequestWindowFeature(Window.FEATURE_NO_TITLE);//去掉Activity上面的状态栏getWindow().
setFlags
quanminchaoren
·
2011-05-31 13:00
Android
Android学习笔记之全屏显示以及屏幕旋转
在onCreate函数中requestWindowFeature(Window.FEATURE_NO_TITLE); //设置为无标题栏getWindow().
SetFlags
(WindowManager.LayoutParams.FLAG_FULLSCREEN
junjieking
·
2011-05-31 11:00
android兼容2.2及以前版本的退出方法
首先,在首个activity中写: Intent intent = new Intent(); intent.
setFlags
(Intent.FLAG_ACTIVITY_CLEAR_TOP
jk138
·
2011-05-30 14:00
html
android
Blog
OS
about android screen
竖屏: android:screenOrientation="portrait"横屏:android:screenOrientation="landscape"全屏:this.getWindow().
setFlags
Bazinga
·
2011-05-28 11:00
Android 隐去标题栏 和 状态栏
阅读更多1、代码设置this.getWindow().
setFlags
(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN
mikey.tsu
·
2011-05-27 17:00
Android
XML
Android非常简单的使应用程序全屏显示
java代码中加上如下代码://全屏publicvoidsetFullscreen(){requestWindowFeature(Window.FEATURE_NO_TITLE);getWindow().
setFlags
fulianwu
·
2011-05-20 09:00
android信得过的退出程序设置
要先兼容多个版本,并且稳定的话,目前发现只发现一种方式,就是清除栈的方式 intent.
setFlags
(Intent.FLAG_ACTIVITY_CLEAR_TOP);
serryzhao
·
2011-05-19 15:00
android
android上一些方法的区别和用法的注意事项
Intent中的addflags()和
setflags
()的区别 addflags():Add additional flags to the intent (or with existing
zhujianjia
·
2011-05-12 10:00
android
设置全屏
getWindow().
setFlags
(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN
BuleRiver
·
2011-05-10 17:00
有关Activity的Launch mode 以及Intent的
setFlags
转载于:http://hi.baidu.com/amauri3389/blog/item/a54475c2a4b2f040b219a86a.html Activity有四种加载模式:standard(默认),singleTop,singleTask和singleInstance。以下逐一举例说明他们的区别:standard:Activity的默认加载方法,即使某个Activity在Task栈中已经
yang1z1
·
2011-05-09 17:00
c
android
service
action
任务
Android 防止设备休眠
2.在代码里实现:getWindow().
setFlags
(WindowManager.LayoutParams.FL
angle_rupert
·
2011-05-09 17:00
android
android中去掉标题栏和状态栏
(一)去掉标题栏和状态栏(实现全屏) this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏this.getWindow().
setFlags
一夕剑
·
2011-05-05 14:00
xml
android
全屏显示
-->> this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去除标题栏 getWindow().
setFlags
comelyyyjj
·
2011-05-04 16:00
java
Android之TextView------文字底部或者中间加横线
TextView) this .findViewById(R.id. text_promotion_link ); 中间加横线 promotionLinkText .getPaint().
setFlags
淡淡的幸福
·
2011-04-27 11:00
android
android 完全退出程序
149868996201011143483180/ 有几个activity,有一需求是在一个activityA点击back键退出系统而不是跳到之前的activity 首先想到的是清空activityA的堆栈,使用intent.
setFlags
xiaoxiaobian3310903
·
2011-04-26 17:00
android
api
String
service
deprecated
notifications
Android 关闭所有Activity完全退出程序方法
Intent.ACTION_MAIN); startMain.addCategory(Intent.CATEGORY_HOME); startMain.
setFlags
jk138
·
2011-04-25 11:00
android
Android 2.2关闭所有Activity完全退出程序方法
htmlIntentstartMain=newIntent(Intent.ACTION_MAIN);startMain.addCategory(Intent.CATEGORY_HOME);startMain.
setFlags
玩野大人
·
2011-04-24 21:00
Android
读书
Java
HTML
Intent在Android中的几种用法
如果是从BroadcastReceiver 启动一个新的Activity , 不要忘记i.
setFlags
(Intent.FLAG_ACTIVITY_NEW_TASK); public class
abc20899
·
2011-04-23 23:00
android
F#
Google
乐phone 虚拟home按键
其实实现的方法很简单,由于Launcher捕获了Home键的按下action,我们直接发送个Intent给Launcher即可,Intenti=newIntent(Intent.ACTION_MAIN);i.
setFlags
happyhell
·
2011-04-21 13:00
android
测试
百度
Google
action
button
上一页
20
21
22
23
24
25
26
27
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他