这一个知识点主要以理解为主:一、任务栈(task stack)1、作用:就是用来管理activity的进入,退出。记录了用户的行为。2、举例:假如要进行一下操作:这时候,任务栈中的activity的情况如下:二、启动模式1、配置:for example: XXXX android:configChanges="orientation|keyboardHid...
分类:
移动开发 时间:
2014-08-21 17:09:54
阅读次数:
214
例子:@{Html.Telerik().Splitter().Name("MainSplitter") .Orientation(SplitterOrientation.Vertical) .Panes(vPanes => { vPanes.Add() ...
分类:
其他好文 时间:
2014-08-21 11:13:03
阅读次数:
171
布局:在 android 中我们常用的布局方式有这么几种:1.LinearLayout ( 线性布局 ) :(里面只可以有一个控件,并且不能设计这个控件的位置,控件会放到左上角)线性布局分为水平线性和垂直线性二者的属性分别为: android:orientation= "horizontal and...
分类:
移动开发 时间:
2014-08-17 11:39:42
阅读次数:
306
先定义一个显示条目的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
A secret service developed a new kind of explosive that attain its volatile property only when a specicassociation of products occurs. Each product i...
分类:
其他好文 时间:
2014-08-12 00:23:43
阅读次数:
228
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
先上效果图:
先写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
本博文主要讲解怎么使用HorizontalScrollView实现左右滑动的效果。
HorizontalScrollView实际上是一个FrameLayout ,一般通过只放置一个LinearLayout子控件。如果要使其添加其他的控件,就使用LinearLayout子控件来添加其他的控件,最后达到丰富其内容的效果。其中,LinearLayout设置的orientation布局为Horizontal.HorizontalScrollView不可以和ListView同时用,因为ListView有自己的滚动条...
分类:
移动开发 时间:
2014-07-30 23:58:05
阅读次数:
582