摘要:
Service 学习第二篇,我们使用BindService()来启动Service.第一步,同样需要继承Service ,实现它必须的方法。并把这个Service注册到AndroidManifest.xml中,做为一种隐式意图,然后等待Activity的启动。 这里IBinder onBind(Intent intent);会返回一个IBinder 对象。就是我们Acitvity 与Service 交互的对象。BindService.javapackage com.hkrt.action; import android.app.Service;
import android.co... 阅读全文
摘要:
Service 是android四大组件之一,它也有自己的生命周期,创建、配置service创建、配置Activity 的过程基本相似。Service没有前台程,只是在后台运行。开发步骤, 定义一个继承Service的子类 在AndoirdManifest.xml 文件中配置该Service介绍一下Service子类中常用的方法。abstract IBinder onBinder(Intent intent);该方法是Service 子类必须实现的方法,该方法返回一个IBinder对象,应用程序可以通该该对象与Service组件通信。void onCreate(); 当该Service第一次被 阅读全文
摘要:
AlertDialog对话框为我们做重要操作时。弹出一个框,做确认信息提示。第一。AlertDialog 的对话框提示、内容比较简单。就不解释了、package com.test; import android.app.Activity;
import android.app.AlertDialog;
import android.app.AlertDialog.Builder;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
import andr. 阅读全文
摘要:
spinner 其实就是一个列表选择框,不过android的列表选择框并不是需要显示下拉列表的,相当于弹出一个菜单供用户选择。spinner 是ViewGrop的一个间接子类,因此他可以充当容器。先介绍一下apinner 的两个常用属性. android:prompt 设置该列表选择框的提示信息 android:entries 使用数组资源设置该下拉列表框的列表项目。第一步,定义需要显示的数据。 spanner 选择书籍 java 学习笔记 J2EE 学习笔记 android 学习笔记 第二步.定义一个Spinner 把数据展示... 阅读全文
摘要:
自动完成文本框(AutoCompleteTextView) 从EditText 派生来的。实际上就是一个文本编辑框,但他比文本框多了一个功能,就是当用用户输入一定定符时,自动完成文本框会出现一个下接菜单,供用户选择,当用户选择后AutoCompleteTextView按用户的选择自动填充该文本框。以下见demo,第一步,我们需要事先准备好需要显示的数据,定义在strings.xml中 HelloAutoCompleteTextView shan dong jiang su an hui zhe jiang fu jian shang h... 阅读全文
摘要:
http://apps.hi.baidu.com/share/detail/45995238 这样就只有这个控件不能拷贝,不能粘贴了。但是我用html:text根本就没有onselectstart ..这些事件,所以没办法,这也用不了。最后,还是用来解决的。 阅读全文
摘要:
在VMware中安装了ubuntu 11.04,经过了一个长假,再次登录的时候居然进不去了,一开始不知道怎样在虚拟机中进入到Grub启动界面,网上搜索了一番,按照以下步骤重新为用户设定了新密码。重启ubuntu,随即长按shift进入grub菜单;选择recovery mode,回车确认;在Recovery Menu中,选择“Root Drop to root shell prompt”,回车确认;进入shell界面,使用passwd命令重新设定密码:passwd david,(david是系统中已有的username),回车确认;输入新密码;再次确认新密码;看到密码设定成功提示:passwd 阅读全文
摘要:
主机系统XP,虚拟机上安装ubuntu11.04桌面系统。进入虚拟机的ubuntu环境。1、安装编译工具 sudo apt-get install build-essential //对编译环境打一些补丁2、创建编译vim的编译环境: sudo apt-get build-dep vim-gtk //初始化scim中文sudo apt-get install scim-pinyin im-switchim-switch -z en_US -s scim-pinyin到此为止,环境已经支持中文。// 3、sudo apt -get install libncurses5-dev//安装终端库 4 阅读全文
摘要:
原文引用:http://blog.csdn.net/hellogv/article/details/5961525使用Gallery 查看图片:main.xml GallerydemoActivity.javapackage com.hkrt; import java.lang.reflect.Field;
import java.util.ArrayList; import android.app.Activity;
import android.content.Context;
import android.graphics.Bitmap;
import and... 阅读全文
摘要:
在前学做web开发时。写jsp页面时,总会用到css样式来渲染页面。这样页面才好看。比方说:然后在页面上引用。XXXXX学习android同样也需要定义一样样式用来渲染页面。首先:我们在res/values/styles.xml格式如下: 然后我们定义样式,最终实现如下: 然后我们在loyout/main.xml中调用样式.在AndroidManifest.xml 中调用主题: 上图: 阅读全文