Call openFileOutput() with
the name of the file and the operating mode. This returns a FileOutputStream.通过 openFileOutput()建立FileoutputStream对象Write to the file with write().创建Write对象并进行数据读写操作Close ...
分类:
移动开发 时间:
2014-08-28 16:16:29
阅读次数:
328
在android中有五种保存数据的方法,分别是
Shared Preferences
Store private primitive data in key-value pairs.
对应属性的键值对属性文件存储
Internal Storage
Store private data on the device memory.
设备内存存储
External Storage
Store public data on the shared external storage.
外部存储器存储,如内存卡
SQLi...
分类:
移动开发 时间:
2014-08-27 23:31:38
阅读次数:
447
popupwindow组件是在点击按钮或进行某项操作后在屏幕上弹出的窗口,并进行UI更新,数据处理等一些操作
常用的方法
1
public PopupWindow(Context context)
构造
创建PopupWindow实例
2
public PopupWindow(View contentView...
分类:
移动开发 时间:
2014-08-26 11:46:36
阅读次数:
312
SlidingDrawer是一种抽屉型的组件,当用户选择打开此抽屉之后,会得到一些可以使用的“程序集”,这样当一个界面要摆放多个组件的时候,使用此组件就可以很好的解决布局空间紧张的问题,SlidingDrawer类的定义如下所示:
ava.lang.Object
? android.view.View
? android.view.ViewGroup
?...
分类:
移动开发 时间:
2014-08-26 00:31:05
阅读次数:
340
这两个组件比较交单,大家看下会使用就行了
XML文件配置
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match...
分类:
移动开发 时间:
2014-08-25 22:54:15
阅读次数:
306
计时器来计算每个运动员所消耗的时间等,而在Android系统之中,这种计时的功能就可以使用Chronometer组件,此类的继承结构如下所示:
²java.lang.Object
? android.view.View
? android.widget.TextView
? android.widget.Chronometer
常见的方法
...
分类:
移动开发 时间:
2014-08-25 22:52:16
阅读次数:
444
在Android系统之中,菜单一共有三类:选项菜单(OptionsMenu)、上下文菜单(ContextMenu)和子菜单(SubMenu)。
今天我们就用几个例子来分别介绍下菜单的使用
activity类中长见的方法
1
public void closeContextMenu()
普通
关闭上下文菜单
2...
分类:
移动开发 时间:
2014-08-25 17:10:34
阅读次数:
343
TabHost主要特点是可以在一个窗口中显示多组标签栏的内容,在Android系统之中每个标签栏就称为一个Tab,而包含这多个标签栏的容器就将其称为TabHost,TabHost类的继承结构如下所示:
java.lang.Object
? android.view.View
? android.view.ViewGroup
? android.widget.F...
分类:
移动开发 时间:
2014-08-24 12:58:02
阅读次数:
258
GridView组件是以网格的形式显示所有的组件,例如:在制作相册的时候,所有的图片都会以相同大小显示在不同的格子之中,就可以依靠此组件完成,此组件的继承结构如下所示:
java.lang.Object
? android.view.View
? android.view.ViewGroup
? android.widget.AdapterView
...
分类:
移动开发 时间:
2014-08-23 23:00:11
阅读次数:
288
Gallery组件可以实现图片的画廊显示效果。将图片在画廊中循环播放
继承结构如下所示
java.lang.Object
?
android.view.View
?
android.view.ViewGroup
?
android.widget.AdapterV...
分类:
移动开发 时间:
2014-08-23 21:44:41
阅读次数:
255