布局:在 android 中我们常用的布局方式有这么几种:1.LinearLayout ( 线性布局 ) :(里面只可以有一个控件,并且不能设计这个控件的位置,控件会放到左上角)线性布局分为水平线性和垂直线性二者的属性分别为: android:orientation= "horizontal and...
分类:
移动开发 时间:
2014-08-17 11:39:42
阅读次数:
306
当手机设定了使用横屏或者竖屏的时候,还想要使用重力感应,可以设置activity属性android:screenOrientation="sensor"但是每次翻转屏幕,都会重新调用oncreate,要想不重新加载程序的话,需要使用如下设置android:configChanges="orienta...
分类:
移动开发 时间:
2014-08-12 18:14:14
阅读次数:
226
先定义一个显示条目的xml布局文件
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation=...
分类:
移动开发 时间:
2014-08-12 17:10:44
阅读次数:
221
SIFT(Scale-invariant feature transform)是一种检測局部特征的算法,该算法通过求一幅图中的特征点(interest points,or corner points)及其有关scale 和 orientation 的描写叙述子得到特征并进行图像特征点匹配,获得了良好...
分类:
其他好文 时间:
2014-08-11 20:40:12
阅读次数:
333
Excel报表打印的格式设定1. 表头的设置Excel._Worksheet myWorksheet; myWorksheet.PageSetup.Orientation = Excel.XlPageOrientation.xlLandscape;//纸张方向, 返回或者设置对象的方向, 纵向或横向...
分类:
其他好文 时间:
2014-08-11 17:08:42
阅读次数:
284
带有g-sensor的Android设备上可通过API获取到设备的运动加速度,应用程序通过一些假设和运算,可以从加速度计算出设备的方向获取设备运动加速度的基本代码是: SensorManager sm = (SensorManager) context.getSystemService...
分类:
移动开发 时间:
2014-08-06 22:07:02
阅读次数:
349
先上效果图:
先写Layout文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_paren...
分类:
移动开发 时间:
2014-08-06 19:04:22
阅读次数:
325
横竖屏切换后Activity会重新执行onCreat函数,但是在Android工程的Mainfest.xml中加入android:screenOrientation="user" android:configChanges="orientation|keyboardHidden"之后,横竖屏切换之后...
分类:
移动开发 时间:
2014-08-04 17:30:57
阅读次数:
227
A data stream is a real-time, continuous, ordered sequence of items. Some examples include sensor data, Internet traffic, financial tickers, on-line auctions, and transaction logs such as Web usage lo...
分类:
其他好文 时间:
2014-08-01 13:47:14
阅读次数:
235
本博文主要讲解怎么使用HorizontalScrollView实现左右滑动的效果。
HorizontalScrollView实际上是一个FrameLayout ,一般通过只放置一个LinearLayout子控件。如果要使其添加其他的控件,就使用LinearLayout子控件来添加其他的控件,最后达到丰富其内容的效果。其中,LinearLayout设置的orientation布局为Horizontal.HorizontalScrollView不可以和ListView同时用,因为ListView有自己的滚动条...
分类:
移动开发 时间:
2014-07-30 23:58:05
阅读次数:
582