SIFT(Scale-invariant feature transform)是一种检測局部特征的算法,该算法通过求一幅图中的特征点(interest points,or corner points)及其有关scale 和 orientation 的描写叙述子得到特征并进行图像特征点匹配,获得了良好...
分类:
其他好文 时间:
2015-02-04 09:20:49
阅读次数:
313
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-02-03 13:22:19
阅读次数:
269
1,xml布局<?xmlversion="1.0"encoding="utf-8"?><LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"><GridViewandroid:id="@+i..
分类:
其他好文 时间:
2015-02-03 07:07:40
阅读次数:
152
Android下的权重问题困扰了我很久,最近一直在寻找答案,终于找到了解决的方法了,下面 通过两个小例子就可以理解了。
案例一:
<LinearLayout
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:orientation="horizo...
分类:
其他好文 时间:
2015-02-02 18:13:28
阅读次数:
111
首先在Mainifest.xml的Activity元素中加入android:configChanges="orientation|keyboardHidden"属性加入这条属性的含义是,应用程序将会处理屏幕方向和键盘状态(推出或合上)信息的改动。但对于其他的设备配置信息的改动则会由Android系统...
分类:
其他好文 时间:
2015-02-02 17:30:41
阅读次数:
173
本文介绍了如何获取android设备所支持的传感器列表。...
分类:
移动开发 时间:
2015-02-02 14:19:26
阅读次数:
168
先看2张图一、5.1寸二、3.7寸三、代码 1 2 8 9 14 15 21 22 29 30 42 43 这里主要是LinearLayout 和 android:gravity="center" android:orientation="vertical"
分类:
移动开发 时间:
2015-02-01 13:27:37
阅读次数:
215
1,创建主界面<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=".MainActi..
分类:
其他好文 时间:
2015-02-01 07:25:09
阅读次数:
174
1. 空layout
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical...
分类:
移动开发 时间:
2015-01-31 12:32:00
阅读次数:
172
书山有路勤为径,学海无涯苦作舟。
本讲内容:Android重力感应
下面是三轴方向
一、手机常用的传感器(Sensor)
在Android2.3系统中,google提供了11种传感器供应用层使用,具体如下:(Sensor类)
Sensor
描述
SENSOR_TYPE_ACCELEROMETER
加速度传感器...
分类:
移动开发 时间:
2015-01-30 23:00:16
阅读次数:
498