
android学习历程
育航家
稳重,坚强,温和,善良。
展开
-
第二节--通过Intent实现Activity的跳转
简要介绍Activity和Intent结合使用以及Activity之间如何传送和接收数据的。原创 2011-03-10 13:01:00 · 1030 阅读 · 0 评论 -
EditText标签属性的使用
布局文件:http://schemas.android.com/apk/res/android" android:id="@+id/mylinearlayout" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_par原创 2012-04-13 09:45:18 · 1567 阅读 · 0 评论 -
自定义View的使用
第一种:通过java代码实现自定义view添加到显示布局中第一步:定义布局文件http://schemas.android.com/apk/res/android" android:id="@+id/mylinearlayout" android:orientation="vertical" android:layout_width="wrap_content"原创 2012-04-13 10:39:08 · 4087 阅读 · 1 评论 -
android动画实现-Frame animation(二)
第一步:创建动画文件animation_1http://schemas.android.com/apk/res/android" android:oneshot="false"> 第二步:布局文件http://schemas.android.com/apk/res/android" android:orientation="verti原创 2012-04-27 10:00:31 · 621 阅读 · 0 评论 -
android动画实现-Frame animation(一)
不说别的,直接做第一步:创建一个动画文件http://schemas.android.com/apk/res/android" android:oneshot="false"> 第二步:创建布局文件http://schemas.android.com/apk/res/android" android:orientation="v原创 2012-04-27 09:57:10 · 805 阅读 · 0 评论 -
android动画实现-Tween animation(三)
第一步:创建动画文件在res/anim下http://schemas.android.com/apk/res/android" android:shareInterpolator="true" > android:interpolator="@android:anim/accelerate_decelerate_interpolator"原创 2012-04-27 10:11:43 · 740 阅读 · 0 评论 -
Android WIFI基本操作
第一步:布局文件http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > android:id="@原创 2012-04-27 15:36:32 · 1397 阅读 · 0 评论 -
.9.png图片的使用,出现红叉问题
今天试用一下.9.png的用法,把制作的.9.png图片放入到res/draw-midp目录下,就会报错,或者是从其它apk中获取的.9.png图片都不能直接使用。下面介绍制作和用法: 第一步:找到如下目录: D:\eclipse\android_sdk\tools中的draw9patch.bat文件,启动进入如下界面:第二步:选择 File---〉Open-9-Patch原创 2012-04-16 09:49:02 · 4437 阅读 · 0 评论 -
TabHost使用(二)
第一步:布局文件<TabHost xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent"> <LinearLayout android:id="@+i原创 2012-04-17 13:50:27 · 1237 阅读 · 0 评论 -
TabHost使用(三)
第一步:创建布局文件<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent"> <LinearLayout android:id="@+id/widget_la原创 2012-04-17 14:23:35 · 958 阅读 · 0 评论 -
PopWindow用法
PopWindow用法分三步:1、实例化PopWindow对象 new PopupWindow(View)2、准备内容布局。可以通过定义布局和解析布局文件3、显示PopWindow窗口4、关闭窗口 第一种方法:直接定义布局第一步:测试布局文件http://schemas.android.com/apk/res/android" android:id="@原创 2012-04-18 10:03:25 · 3634 阅读 · 0 评论 -
Spinner与适配器Adapter使用总结
Spinner的使用离不开和Adapter结合使用,下面将基本的常用法介绍一下,主要还是为初学者提供些帮助第一步:创建布局文件<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/mylinearlayout" android:orientation="原创 2012-04-17 11:38:38 · 15966 阅读 · 1 评论 -
TabHost使用(一)
第一步:创建布局文件<TabHost xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/tabhost" android:layout_width="fill_parent" android:layout_height="fill_parent">原创 2012-04-17 13:22:26 · 1949 阅读 · 0 评论 -
SurfaceView简单用法一
快速学会SurfaceView用法:SurfaceView是视图(View)的继承类,这个视图里内嵌了一个专门用于绘制的Surface。你可以控制这个Surface的格式和尺寸。Surfaceview控制这个Surface的绘制位置。第一步:继承SurfaceView并实现SurfaceHolder.Callback接口 第二步: SurfaceView.getHolder()获得原创 2012-05-05 11:24:26 · 9058 阅读 · 2 评论 -
android ListView示例
实现列表显示的集中方法1、通过ListActivity实现public class ListViewTestActivity extends ListActivity { //声明数据数组 private String students[]={"张三","李四","王五"}; private ListView lv; @Override publ原创 2011-11-11 15:35:37 · 877 阅读 · 1 评论 -
DOM解析XML实现
下面讲解一个DOM解析XML文件,望大家参考,可能写得比较乱,大家不要介意。第一步:创建一个xml文件:xmltest.xml 这是一个TextView 这是一个按钮 第二步:创建一个对应上面xml文件的javabean类XMLTest.javapublic class XMLTest implements Serializable{原创 2011-12-02 10:26:28 · 719 阅读 · 0 评论 -
第一节--认识Activity
介绍Activity的基本创建方法和android项目的基本结构。原创 2011-03-10 10:37:00 · 643 阅读 · 0 评论 -
第六节--Intent和Uri的综合应用
Intent和Uri的各种类型的应用示例原创 2011-03-14 16:42:00 · 769 阅读 · 0 评论 -
第六节--LinearLayout布局的介绍和应用
View:LinearLayout:java.lang.Object ↳android.view.View ↳android.view.ViewGroup ↳android.widget.LinearLayout原意:A Layout that arranges its children in a single column or a single row. The direction of the row can be set by calling setOrientation(). Y原创 2011-03-15 12:03:00 · 832 阅读 · 0 评论 -
第三节--通过Intent实现Activity的数据传送及Meun的创建和使用
Activity之间通过Intent传送数据,如何接收数据以及Meun在Activity中是如何创建和使用。原创 2011-03-14 10:13:00 · 908 阅读 · 0 评论 -
第四节--Activity生命周期里的方法介绍
Activity生命周期方法的活动原理原创 2011-03-14 11:21:00 · 660 阅读 · 0 评论 -
第九节--控件(二)ListView
ListView的各种应用方法和形式,以及listView如何ListAdapter适配器联合起来使用的。原创 2011-03-16 16:07:00 · 685 阅读 · 0 评论 -
第十节--控件(三)ProgressBar
通过线程控制ProgressBar的进度原创 2011-03-16 16:50:00 · 1222 阅读 · 0 评论 -
第八节--控件(一)RadioGroup,RadioButton,CheckBox,Toast
介绍常用的使用控件RadioGroup,RadioButton,CheckBox,Toast的基本应用原创 2011-03-16 11:48:00 · 1038 阅读 · 0 评论 -
学习推荐网址
<br />推荐网址:http://www.android.comhttp://developer.android.comhttp://www.eoeandroid.comhttp://www.android.com/http://www.android123.com.cn/http://www.cmd100.com/www.mars-droid.comhttp://code.google.com/hosting 世界各地开发者发布的原始代码<br />android书籍推荐:深入浅出Google A原创 2011-05-10 11:36:00 · 726 阅读 · 0 评论 -
第十三节--android常用操作命令
<br />进入dos环境:<br />选择开始---》“运行” 输入cmd <br />1. 查看所有模拟器类型 android list targets<br /> <br />2. 创建模拟器:android create avd --target 2 --name cupcake1<br />3. 查看创建的模拟器:android list avd<br />4. 删除模拟器:android delete avd --name cupcake1 <br />5. 启动模拟器:原创 2011-05-10 13:49:00 · 686 阅读 · 0 评论 -
第十一节--Handler的基本应用
通过两个测试用例,来展示一下Handler的基本用法和在应用中的具体作用和意义。原创 2011-03-18 15:17:00 · 672 阅读 · 0 评论 -
第十二节--SQLite的基本操作的应用(一)
SQLite增删改查的综合应用原创 2011-03-18 18:00:00 · 1133 阅读 · 0 评论 -
Android的权限使用说明
android.permission.ACCESS_CHECKIN_PROPERTIES 允许读写访问 "properties"表在checkin数据库中,改值可以修改上传( Allows read/write access to the "properties" table i原创 2011-07-26 17:16:18 · 1181 阅读 · 0 评论