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
先看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
Java代码letorientation:UIInterfaceOrientation=UIApplication.sharedApplication().statusBarOrientationprintln("Currentlylandscape:"+((orientation==UIInter...
分类:
移动开发 时间:
2015-01-30 17:11:14
阅读次数:
192
LinearLayout(线性布局) 一.android:orientation 这个属性代表方向的意思,值有两个 vertical(以线性垂直排列),horizontal(以线性水平排列) 1.vertical2.horizontal 二.android:gravity ="top"(b...
分类:
其他好文 时间:
2015-01-29 14:27:11
阅读次数:
194