`
文章列表

Android美工之Shape

Android中常常使用shape来定义控件的一些显示属性,今天看了一些shape的使用,对shape有了大体的了解,稍作总结: 先看下面的代码:         <shape> <!-- 实心 --> <solid android:color="#ff9d77"/> ...
动画类型 Android的animation由四种类型组成 XML中 alpha 渐变透明度动画效果 scale 渐变尺寸伸缩动画效果 translate 画面转换位置移动动画效果 rotate 画面转移旋转动画效果 JavaCode中 AlphaAnimation 渐变透明度动画效果 ScaleAnimation 渐变尺寸伸缩动画效果 TranslateAnimation 画面转换位置移动动画效果 RotateAnimation 画面转移旋转动画效果 Android动画模式 Animation主要有两种动画模式: 一种是tweened animation(渐变动画) ...

Android AlertDialog

[align=left]这个AlertDialog和Preference的区别是:一个是临时的一个是文件保存 都有简介直接实现DialogInterface接口 @Override protected Dialog onCreateDialog(int id) { super.onCreateDialog(id); switch (id) { case DIALOG_YES_NO_MESSAGE: return new AlertDialog.Builder(AlertDialogSamples.this) ...

Android Alarm闹钟

1,设置闹钟(只响一次) Intent intent = new Intent(AlarmController.this, OneShotAlarm.class); PendingIntent sender = PendingIntent.getBroadcast(AlarmController.this,0, intent, 0); Calendar calendar = Calendar.getInstance(); calendar.setTimeInMillis(System.currentTimeMi ...
Preferences 在Android当中被用来记录应用,以及用户喜好等等,它可以用来保存 简单的数据类型,如Int,Double,Boolean等。Preferences中保存的数据可以理解为Map型。我们通过PreferenceManager 以及getDefaultSharedPreferences(Context) 来获取它,比如当我们想获得整数我们可以用 getInt(String key, int defVal) .获取里面的某个键值,当我们想修改时候我们用 putInt(String key, int newVal), 最后用 edit(), 方法提交! 具体谷歌android ...
         在com.example.android.aips包里有两个类文件:ApiDemos和ApiDemosApplicatio,这两个类主要用来构建整个Demo。 ApiDemos继承自android.app.ListActivity,显然是列表视图 ApiDemosApplicatio继承自android.app.Application,是用来控制App整体的 -------------------------------分割线-------------------------------- ListActivity 就是用来展示绑定了例如数组和数据游标(Cursor)数据的 ...

Android 源码下载

android源码下载:http://rgruet.free.fr/public/

What is Android?

Android是一个用于移动设备软件栈(software stack),它包括操作系统,中间件和关键应用。那么Android SDK(soft development kit)为在Android平台开发(Java语言)提供必须的工具和API。     特性:     1,应用程序平台          重用和替换组 ...
匹配中文字符的正则表达式: [u4e00-u9fa5] 评注:匹配中文还真是个头疼的事,有了这个表达式就好办了 匹配双字节字符(包括汉字在内):[^x00-xff] 评注:可以用来计算字符串的长度(一个双字节字符长度计2,ASCII字符计1) 匹配空白行的正则表达式:ns*r 评注:可以用来删除空白行 匹配HTML标记的正则表达式:< (S*?)[^>]*>.*?|< .*? /> 评注:网上流传的版本太糟糕,上面这个也仅仅能匹配部分,对于复杂的嵌套标记依旧无能为力 匹配首尾空白字符的正则表达式:^s*|s*$ 评注:可以用来删除行 ...
function point(left,top){ this.left = left; this.right = right; return {x:this.left,y:this.right}; } var pos = point(23,25); pos.x = 23; pos.y = 25;
var jack = { name : 'jack', age : 26 } var sun = { name : 'sun', age : 28 } function printName(){ return this.name; } alert(printName.call(jack)); alert(printName.call(sun));
function Base(name){ this.name = name; this.getName = function(){ return this.name; } } function Child(id){ this.id = id; this.getId = function(){ return this.id; } } Child.prototype = new Base('base'); var ch = new Chilc('child'); alert(ch.getId()); ...
//定义式 function func(){ alert("定义式:one"); } func(); function func(){ alert("定义式:two"); } func(); </script> <script type="text/javascript"> //变量式 var func = function (){ alert("变量式:one"); } func(); var func = functi ...
table tbody tr.even td{ background:#ADD8E6; } table tbody tr.odd td{ background:#EEF5FB; } table tbody tr.msov td{ background:#FFFF99; } $(document).ready(function () { $("table tbody tr:even").addClass("even"); $("table tbody tr:odd").addClass(&quo ...
1.<meta http-equiv="refresh" content="0;url=http://88223100.cnblogs.com"> 2.<body onLoad="parent.location='http://88223100.cnblogs.com'"> 3. <script language="JAVASCRIPT"> setTimeout("document.location.href="/index.asp'&q ...
Global site tag (gtag.js) - Google Analytics