上一页 1 ··· 321 322 323 324 325 326 327 328 329 ··· 340 下一页
摘要: 一般只需要处理按钮的点击事件就可以,但想让一个按钮处理多个事件,就得同时监听多个方法。OnClickListener 点击事件OnLongClickListener 长按事件OnTouchListener 触摸事件同事监听三个事件,只有 OnTouchListener 会被触发。 package ... 阅读全文
posted @ 2015-01-13 16:29 星辰之力 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 1.对指定的android activity设置自定义主题风格,其中自定义主题风格是关键,在android 4.0以上版本中如果使用Theme.Holo或者Theme.Light等,程序会一直报错误-you cannot combine custom title with otherfeature ... 阅读全文
posted @ 2015-01-13 15:02 星辰之力 阅读(221) 评论(0) 推荐(0) 编辑
摘要: package com.itau.jingdong.widgets;import android.content.Context;import android.graphics.Rect;import android.util.AttributeSet;import android.view.Mot... 阅读全文
posted @ 2015-01-13 14:49 星辰之力 阅读(728) 评论(0) 推荐(0) 编辑
摘要: JazzyViewPager:package com.itau.jingdong.widgets.jazzviewpager;import java.util.HashMap;import java.util.LinkedHashMap;import android.content.Context;... 阅读全文
posted @ 2015-01-13 14:46 星辰之力 阅读(968) 评论(0) 推荐(0) 编辑
摘要: 在Android3.0之后,Google对UI导航设计上进行了一系列的改革,其中有一个非常好用的新功能就是引入的ActionBar,他用于取代3.0之前的标题栏,并提供更为丰富的导航效果。一、添加ActionBar1、不需要导入ActionBar,因为在android3.0或者以上版本中,Actio... 阅读全文
posted @ 2015-01-13 13:33 星辰之力 阅读(292) 评论(0) 推荐(0) 编辑
摘要: 读取SQLite中的数据显示在AutoCompleteTextView中,支持动态加入SQLite中不存在的数据.package zhang.ya;import java.io.File;import java.io.FileOutputStream;import java.io.InputStre... 阅读全文
posted @ 2015-01-12 23:38 星辰之力 阅读(329) 评论(0) 推荐(0) 编辑
摘要: SQLite日期类型是以TEXT、REAL和INTEGER类型分别不同的格式表示的,对应如下:TEXT: "YYYY-MM-DD HH:MM:SS.SSS"REAL: 以Julian日期格式存储INTEGER: 以Unix时间形式保存数据值,即从1970-01-01 00:00:00到当前时间所流经... 阅读全文
posted @ 2015-01-12 23:35 星辰之力 阅读(1280) 评论(0) 推荐(0) 编辑
摘要: 直做数据库,最近花了点时间把自己常用的东西封装在一起。DBHelperusing System;using System.Collections.Generic;using System.Text;using System.Data;using System.Data.Common;using Sy... 阅读全文
posted @ 2015-01-12 23:20 星辰之力 阅读(1339) 评论(0) 推荐(0) 编辑
摘要: SQLite分页显示:Select * From news order by id desc Limit 10 Offset 10这篇文章是根据 SQLite 官方 WIKI 里的内容翻译,如果有什么翻译不当的地方希望大家指出,毕竟我的英文水平实在很差。 SQLite 包括以下五个时间函数:date... 阅读全文
posted @ 2015-01-12 23:07 星辰之力 阅读(1127) 评论(0) 推荐(0) 编辑
摘要: package com.example.utils; import java.util.ArrayList; import android.content.ContentValues; import android.content.Context; import android.dat... 阅读全文
posted @ 2015-01-12 22:49 星辰之力 阅读(2610) 评论(0) 推荐(0) 编辑
上一页 1 ··· 321 322 323 324 325 326 327 328 329 ··· 340 下一页