有时需要让activity在后台运行,具体实现方法如下:在AndroidManifest.xml中,activity属性中增加:android:theme="@style/BackgroundOnly" android:configChanges="orientation|keyboardHidd....
分类:
移动开发 时间:
2015-03-28 01:04:38
阅读次数:
186
<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity"&g..
分类:
其他好文 时间:
2015-03-20 14:34:38
阅读次数:
174
待机后,重新进入,发现数据丢失,通过打印信息发现,原来是activity被回收掉了。为了避免数据的丢失,在androidmanifest.xml的activity中加入android:configChanges="orientation|keyboardHidden|screenSize"
分类:
其他好文 时间:
2015-03-19 13:07:28
阅读次数:
120
IOS调用系统的相机默认是竖屏的,网上找了很多方法强制横屏都无效,以下代码经测试兼容ios78
自定义一个UIImagePickerController并且覆盖以下方法:
-(UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
return
UIInterfaceOrientationLan...
分类:
移动开发 时间:
2015-03-17 15:50:22
阅读次数:
325
媒体查询语法 上面例子我加在文章中了。您可以通过改变浏览器的大小可以看到效果("标题"的背景颜色)至于 orientation介绍用模拟器Operamoblie
分类:
Web程序 时间:
2015-03-14 19:47:23
阅读次数:
157
LinearLayout线性布局 LinearLayout是一种线型的布局方式。LinearLayout布局容器内的组件一个挨着一个地排列起来:不仅可以控制个组件横向排列,也可控制各组件纵向排列。通过orientation属性设置线性排列的方向是垂直(vertical)还是纵向(horizonta....
分类:
移动开发 时间:
2015-03-13 10:44:38
阅读次数:
143
activity_main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vert...
分类:
移动开发 时间:
2015-03-12 20:53:25
阅读次数:
182
Problem Description
We wish to tile a grid 4 units high and N units long with rectangles (dominoes) 2 units by one unit (in either orientation). For example, the figure shows the five different ways ...
分类:
其他好文 时间:
2015-03-10 10:31:34
阅读次数:
174
main.xml代码如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertica...
分类:
移动开发 时间:
2015-03-09 12:59:05
阅读次数:
202
今天运行一个场景时候,welcome场景可以旋转,进入主场景后发现只要旋转手机屏幕就会crash。*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'UnityDefaultViewController should be used only if unity is se...
分类:
编程语言 时间:
2015-03-08 15:45:50
阅读次数:
402