路径选择--ETXSupported Hardware6LBR & Simulated WSNiSense Wireless Sensor Network Devices例2:前缀自动配置Example 1: Hello 6LBR产品总结6LOWPAN
分类:
其他好文 时间:
2015-04-28 11:15:07
阅读次数:
106
一
概述
frameworks\base\core\java\android\view\WindowOrientationListener.java
监听sensor是否有数据变化
首先看看芯片方向(x,y,z):
补充流程:
PhoneWindowManager调用updateOrientationListenerLp去Sen...
分类:
其他好文 时间:
2015-04-27 21:51:10
阅读次数:
257
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" ? ? xmlns:wen=http://schemas.android.com/apk/res/com.iteye.googlers ? ? android:orientation="vertical" android:layout_wi...
分类:
移动开发 时间:
2015-04-27 18:36:28
阅读次数:
196
1、LinearLayout(线性布局):可以分为水平线性:android:orientation= " horizontal "和垂直线性:android:orientation= "vertical"2、RealtiveLayout(相对布局):(1)在相对布局中属性值为true或false的有...
分类:
移动开发 时间:
2015-04-27 16:47:39
阅读次数:
241
原文http://blog.csdn.net/zhazhiqiang/article/details/21047207一、理论1、HOG特征描述子的定义: locally normalised histogram of gradient orientation in dense overlappi....
分类:
其他好文 时间:
2015-04-25 13:38:14
阅读次数:
174
布局文件layout背景色里:
<LinearLayout
android:layout_width="130dp"
android:layout_height="104dp"
android:background="@drawable/bg_frame"
android:orientation="vertical">
drawable/bg_frame.xml内容如下
<?xmlversion="1.0"encoding="UTF-8"?>
<laye..
分类:
移动开发 时间:
2015-04-24 16:45:31
阅读次数:
519
概述 通过媒体查询为不同的设备和大小配置不同的样式。代码展示/* media *//* 横屏 */@media screen and (orientation:landscape){ }/* 竖屏 */@media screen and (orientation:portrait){ ...
分类:
Web程序 时间:
2015-04-22 23:43:07
阅读次数:
194
如果一个activity在横屏状态下切换到竖屏状态,是不是会把整个activity重新加载一遍呢?这样的话,所有变量和方法都被初始化了,显然,一般我们不想这样。
AndroidManifest.xml
android:configChanges="keyboardHidden|orientation"
就是如果配置了这个属性,当我们横竖屏切换的时候会直接调用onCreate方法中的o...
分类:
移动开发 时间:
2015-04-22 00:37:33
阅读次数:
209
设置支持的屏幕方向有两个级别,一个是app级别的,另一个是viewController级别的。
app 级别的可以在[target]-[general]-[device orientation]里面设置,如下图:
默认情况下Upside Down没有勾选,其他都勾选了。
(为什么Upside Down不推荐勾选呢,因为iPhone的电话app是不支持Upside Down的,...
分类:
移动开发 时间:
2015-04-21 22:38:59
阅读次数:
252
ios设备支持旋转的方法:
1、修改工程的info.plist中"Supported interface orientations"的值(一般在工程的Taget-> General -> Deployment Info -> Device Orientation处打钩来选择设备支持)。
2、实现工程的AppDelegate文件中的(application:supportedInterf...
分类:
移动开发 时间:
2015-04-21 20:51:56
阅读次数:
143