在做界面布局的时候,我们经常用到的就是LinearLayout,但是有时候用起来也不方便,比如我们在页面中要把一个Button放在屏幕底部,此时我们设置android:layout_gravity="bottom"是没有效果的。为什么呢?对于
LinearLayout:
当 android:orientation="vertical" 时, 只有水平方向的设置才起作用,垂直方向的设置不...
分类:
移动开发 时间:
2015-04-21 11:10:47
阅读次数:
153
1、 有些手机基带芯片只能支持2M以下的YUV sensor,3M以上只能使用JPEG sensor,这里说明YUV输出格式对基带芯片有一定的要求, 那么到底YUV sensor对基带芯片有怎样的要求呢?2、 如果直接输出RGB,对于LCD的显示是最方便的,那么为何大多数基带芯片都是要求输出为YUV...
分类:
其他好文 时间:
2015-04-17 15:30:37
阅读次数:
399
SIFT(Scale-invariant feature transform)是一种检测局部特征的算法,该算法通过求一幅图中的特征点(interest points,or corner points)及其有关scale 和 orientation 的描述子得到特征并进行图像特征点匹配,获得了良好效果...
分类:
其他好文 时间:
2015-04-17 13:01:55
阅读次数:
146
android:id="@+id/toast_layout"
android:layout_width="200dip"
android:layout_height="fill_parent"
android:background="#f0f0f0"
android:orientation="vertical" >
andr...
分类:
移动开发 时间:
2015-04-17 11:26:46
阅读次数:
244
由于真机比较烂,获取所有可用传感器之后发现没有方向传感器和磁场传感器,所以夭折,因此没有进行完全开发,但是根据文档的一些东西添加了使用Sensor的流程,首先在CustomView中设置一个Getter,就是获取rotateAngle: public void setRotateAngle(f...
分类:
其他好文 时间:
2015-04-16 21:15:23
阅读次数:
108
一. 传感器
传感器使用方式和定位服务类似:应用向特定的传感器注册监听器,获得更新通知。
private void registerWithAccelerometer(){
SensorManager sm=(SensorManager) getSystemService(Context.SENSOR_SERVICE);
List sensors=sm.getSensorList(Se...
分类:
其他好文 时间:
2015-04-16 17:47:10
阅读次数:
180
1 public class SensorZhinan extends Activity implements SensorEventListener{ 2 3 private ImageView point; 4 private SensorManager sensor; 5 ...
分类:
其他好文 时间:
2015-04-16 16:58:31
阅读次数:
128
在这个浮躁的社会,我们要时刻提醒自己放慢脚步!!...
分类:
移动开发 时间:
2015-04-15 17:05:41
阅读次数:
269
在这个浮躁的社会,我们要时刻提醒自己放慢脚步!!...
分类:
其他好文 时间:
2015-04-15 13:42:27
阅读次数:
382
简单来说,YUV: luma (Y) + chroma (UV) 格式, 一般情况下sensor支持YUV422格式,即数据格式是按Y-U-Y-V次序输出的RGB: 传统的红绿蓝格式,比如RGB565,其16-bit数据格式为5-bit R + 6-bit G + 5-bit B。G多一位,原因是人...
分类:
其他好文 时间:
2015-04-15 12:59:10
阅读次数:
767