Xamarin 开发的技术资料很少,通过学习,把自己的学习过程及其中碰到的问题与大家分享。 Splash Screen 就是在应用程序启动时,出现的一张图片,一般App的Splash Screen都是动态的广告信息。 先学习一下如何加载一个固定的Splash Screen.
分类:
移动开发 时间:
2015-09-05 20:46:50
阅读次数:
211
//计算屏幕大小,4.0屏幕以上或4.0屏幕以下的情况: 1 private void initViewImage() { 2 imageView = (ImageView) findViewById(R.id.img); 3 String imageUrl; 4 double screen = ....
分类:
其他好文 时间:
2015-09-05 11:01:26
阅读次数:
129
Winform窗体的常用窗体属性1)窗体全屏显示this.DesktopBounds = Screen.GetWorkingArea(this); //全屏显示桌面注:可以放在初始化方法中,也可以设置定时器(Timer),什么时候显示全屏2)窗体去掉最小化和最大化this.MinimizeBox =...
得到显示器分辨率Dim X As Short = System.Windows.Forms.Screen.PrimaryScreen.Bounds.WidthDim Y As Short = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Heigh...
分类:
其他好文 时间:
2015-09-04 18:37:05
阅读次数:
259
For iOS, tabs will appear at the bottom of the screen. For Android, tabs will be at the top of the screen, below the nav-bar. This follows each OS‘s design specification, but can be configured with...
分类:
移动开发 时间:
2015-09-04 11:12:26
阅读次数:
188
linux下远程管理利器-tmux 1.控制键 控制键就是tmux的主键.当你在tmux环境下按下这个键的时候,tmux就会把你后面输入的指令,解析成它内置的功能.tmux默认的控制键是 ctrl+b(同时按下ctrl和b,在后面将直接用小写的c-b代替).这相当于screen的ctrl+a.同.....
分类:
系统相关 时间:
2015-09-04 07:26:34
阅读次数:
228
在IPhone 6上,单击下个月按钮不响应的解决方法, self.width = SCREEN_WIDTH;//这个必须,否则IPhone6上,下个月按钮不响应。 self.titleLabel.width = SCREEN_WIDTH - self.backButton.width - sel.....
分类:
其他好文 时间:
2015-09-03 08:11:32
阅读次数:
316
常用总结,方便大家学习共享。1.document.write(""); 输出语句2.JS中的注释为//3.传统的HTML文档顺序是:document->html->(head,body)4.一个浏览器窗口中的DOM顺序是:window->(navigator,screen,history,locat...
分类:
Web程序 时间:
2015-09-02 10:42:09
阅读次数:
175
Priority Queues9.1 ADT9.2 implementing a priority queue用无序的list来实现用有序的列表来实现优先队列9.3 heapsheap数据结构使用堆来实现优先队列基于数组实现的完全二叉树使用最小优先队列来进行排序adaptable priority ...
分类:
编程语言 时间:
2015-09-01 20:05:19
阅读次数:
278
推荐一个常用的jquery加载效果插件:要引入这个插件的css和js:1 /css/showLoading.css" rel="stylesheet" media="screen" />2 使用的时候代码如下:1 $(".wrapper").showLoading(); //展示加载效果 wra.....
分类:
Web程序 时间:
2015-09-01 12:34:34
阅读次数:
233