今天运行一个场景时候,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
判断activity 是横屏还是竖屏方法 1: //根据设备配置信息Configuration cf= this.getResources().getConfiguration(); //获取设置的配置信息int ori = cf.orientation ; //获取屏幕方向if(ori == cf...
分类:
移动开发 时间:
2015-03-06 18:46:49
阅读次数:
172
https://github.com/dodev/RoadDataCollector A tool for collecting information from sensor devices.core - dodevgui - dotmeerlocaldb - naitharremotedb - ...
分类:
其他好文 时间:
2015-03-06 16:29:59
阅读次数:
140
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-06 11:23:31
阅读次数:
201
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-05 19:37:04
阅读次数:
147
1、popupwindow的布局文件:menu_layout.xml
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
android:id="@...
1.页面一main.xml代码如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="ve...
分类:
移动开发 时间:
2015-03-04 22:49:46
阅读次数:
204
出现下边的问题解决方法:
整的错误提示信息为:No orientation specified, and the default is horizontal. This is a common source of bugs when
children are added dynamically.
通常发生这个错误提示的原因是我们直接在原有的页面上...
分类:
其他好文 时间:
2015-03-04 17:05:34
阅读次数:
130
HorizatalScollView控件只是支持水平滚动,而且它只能包含一个控件,通常是在<HorizatalScollView>标签中定义一个<LinearLayout>标签并且在<LinearLayout>标签中android:orientation属性值设置为horization.然后在<LinearLayout>标签中放置多个控件,..
分类:
移动开发 时间:
2015-03-04 06:25:50
阅读次数:
220
新建一个Android工程。
一 布局
先看效果图:
打开main.xml修改内容如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_par...
分类:
移动开发 时间:
2015-03-03 20:42:33
阅读次数:
219