码迷,mamicode.com
首页 >  
搜索关键字:fullscreen    ( 149个结果
android activity全屏
有两种方法:1、在AndroidManifest.xml的配置文件里面的标签添加属性:android:theme="@android:style/Theme.NoTitleBar.Fullscreen"如:2.在Activity的onCreate()方法中的super()和setContentVie...
分类:移动开发   时间:2014-11-25 17:55:45    阅读次数:235
android 图库查看大图界面没有全屏显示
Gallery.java //在onCreat方法中setContentView()之前插入 getWindow().setFlags(WindowManager.LayoutParams. FLAG_FULLSCREEN ,               WindowManager.LayoutParams. FLAG_FULLSCREEN);//全屏...
分类:移动开发   时间:2014-11-24 10:05:24    阅读次数:150
bootstrap 中这段代码 使bundles 失败
_:-ms-fullscreen,:root input[type="date"],_:-ms-fullscreen,:root input[type="time"],_:-ms-fullscreen,:root input[type="datetime-local"],_:-ms-fullscre...
分类:其他好文   时间:2014-11-19 07:25:44    阅读次数:160
Android全屏显示(代码实现)
// 去掉窗口标题requestWindowFeature(Window.FEATURE_NO_TITLE);// 全屏显示getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutPar...
分类:移动开发   时间:2014-11-08 23:24:47    阅读次数:291
Android中的Theme和Style
1.首先,Theme属性详解: android:theme="@android:style/Theme.Dialog" //Activity显示为对话框模式 android:theme="@android:style/Theme.NoTitleBar" //不显示应用程序标题栏 android:theme="@android:style/Theme.NoTitleBar.Fullscreen...
分类:移动开发   时间:2014-11-06 14:53:27    阅读次数:220
android Theme
Style.xml隐藏了titleBar,Theme.Holo.Light.NoActionBar.Fullscreen全屏,也是隐藏了TitleBarTheme.Translucent全透明的Theme.WallpaperHome界面作为背景Theme.Holo.Light/Theme.Light...
分类:移动开发   时间:2014-10-28 17:33:02    阅读次数:150
ALV GUI状态拷贝
一般做ALV时,可以到SE80里面,在函数组下面输入KKBL函数组,找到其GUI状态下的Standard_fullscreen这个GUI状态,COPY到自己程序里面。
分类:其他好文   时间:2014-10-22 17:17:01    阅读次数:125
Fullscreen API
Launching Fullscreen Mode // Find the right method, call on correct element function launchIntoFullscreen(element) { if(element.requestFullscreen) { element.requestFullscreen(); } else if(e...
分类:Windows程序   时间:2014-10-20 19:44:52    阅读次数:314
Silverlight FullScreen 全屏
...
分类:Web程序   时间:2014-10-13 13:25:39    阅读次数:166
DOM元素全屏显示解决方案
function goFullscreen(id) { // Get the element that we want to take into fullscreen mode var element = document.getElementById(id); // These function will not exist in the browsers th...
分类:其他好文   时间:2014-09-16 10:43:20    阅读次数:298
149条   上一页 1 ... 11 12 13 14 15 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!