- 浏览: 1066311 次
- 性别:
- 来自: 南昌
最新评论
-
dd18349182956:
你是用的smack哪个版本?我用的smack4.1.3和sma ...
关于socket长连接的心跳包 -
xukaiyin:
全英文
getApplicationContext()与this,getBaseContext() -
裂风矢:
...
<category android:name="android.intent.category.DEFAULT" /> 惹的祸 -
xanthodont:
mark一下
XMPP——Smack -
Evilover3:
mark一下,学习了
XMPP——Smack
文章列表
我们可通过StatF来查询Internal或External的容量
可以阅读该文章:http://notfatboy.iteye.com/blog/417244
可以查看这两篇文章:
1,通过Serializable传递一个类对象的例子
http://mingkg21.iteye.com/blog/438913
2,通过Parcelable传递一个类对象的例子
http://mingkg21.iteye.com/blog/463895
而若需要传递多个类对象的时候就必须用Parcelable来封装类,然后将其存放在ArrayList,
我从网上下载的一个例子该成这种情况的:可以看其代码:
对象:
package cn.wizhy;
import android.os.Parcel;
import android.os.Parcelable;
...
源码android/packages/apps/providers/media/src/com/android/providers/media/MediaScannerReceiver.java
package com.android.providers.media;
import android.content.Context;
import android.content.Intent;
import android.content.BroadcastReceiver;
import android.net.Uri;
import android.os.Environment;
impo ...
很久没有写文章了,今天有空看了有关android media的有关知识,把心德记录下来:
1,若你很想清楚的了解究竟android media支持哪些格式,你可以看android的源码:android\frameworks\base\media\java\android\media中的MediaFile:
static {
//Audio
addFileType("MP3", FILE_TYPE_MP3, "audio/mpeg");
addFileType("M4A", FILE_TYPE_M ...
摘自:http://blog.csdn.net/sukyle/archive/2009/08/26/4487552.aspx
http://blog.csdn.net/iefreer/archive/2009/08/17/4456376.aspx
http://blog.csdn.net/wbw1985/archive/2009/12/01/4916909.aspx
学android也已经5个月了,不知道是自己的英语不够好还是一直找不到自己的位置,到现在对android的基础知识并不透彻,此时”囫囵吞枣“这个词语特别形象。当一个朋友问我”intent分哪几种?”我回答:”startActivity 不返回结果的和startActivityForResult返回结果的“。朋友笑着说:我也是这样回答面试官的,面试官告诉他是显式intent(Explicit Intent)和隐式Intent(Implicit Intent).
你是否问过:为什么一个activity需要生命周期呢?为什么分这么多component呢?Activity,Task,Activity ...
android的手机的back键默认行为是finish处于前台的Activity的即Activity的状态为Destroy状态,再次启动该Activity是从onCreate开始的。
而Home键默认是stop前台的Activity即状态为onStop而不是Destroy,若再次启动它,则是从OnResume开始的,即会保持上次Activityd的状态。
back键也有例外的,按back键不会关闭Activity的,比如播放音乐,按了back键之后仍可以继续播放音乐,这是Music这支ap已经重写了back键的事件处理。
为什么需要Home键和Back键呢?一个使得Activity 为St ...
转自:http://mingkg21.iteye.com/blog/587346
final ActivityManager am = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
am.restartPackage(getPackageName());
<uses-permission android:name="android.permission.RESTART_PACKAGES"></uses-permission>
问题:一个application(即同一个.apk)里面有A,B,C三个Activity,启动顺序为:A为action=main&Launch即application启动的第一个activity,A启动B,B启动C,那想从关闭C之后直接回到A,而不是回到B??
分析:正常情况下:A启动B之后,A进入Stop的状态,并且B进入活动栈栈顶,B启动C之后,B进入Stop的状态,并且C进入活动栈栈顶,此时活动栈为从栈底开始为:A-->B-->C,若C通过finish关闭之后,返回到的是B,因为C关闭finish为C出栈,此时处于栈顶的为B,所以C关闭之后系统将栈顶的B显示。那想fi ...
该例子来自APIDemo
/*
* Copyright (C) 2007 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licen ...
//Activity
package com.android.Somejavaknowledget;
import java.util.Date;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.view.View.OnClickListener;
import android.widget.Button;
import androi ...
摘自:http://hi.baidu.com/banseon/blog/item/8a45c8ed09396b4e79f05579.html
System.out.printf
The first way you'll learn to work with the Formatter is not to interact with it directly, but instead to use the new PrintStream method printf. You're probably most familiar with PrintStream from doing System ...
获得手机系统设置的区域
- 博客分类:
- 代码之美
通过Locate这个类,我们可以获得手机系统设置的区域: java.util.Locale
Locale represents a language/country/variant combination. It is an identifier which dictates particular conventions for the presentation of information. The language codes are two letter lowercase codes as defined by ISO-639. The country codes are three ...
android 的mediaPlayer 有自带的MediaControl.我们不比自己重写这个控件:
A view containing controls for a MediaPlayer. Typically contains the buttons like "Play/Pause", "Rewind", "Fast Forward" and a progress slider. It takes care of synchronizing the controls with the state of the MediaPlay ...
摘自:http://hi.baidu.com/tianzhonghan/blog/item/c301f20051254819738b650e.html
Symbian
市场占有份额:★★★★☆
技术跃升幅度:★★★☆
看点和重要性:★★★☆
多年来Symbian系统一直占据智能系统的市场霸主地位,系统能力和易用性等各方面已经得到了市场和手机
用户们的广泛认可。
Google Android
市场占有份额:★★☆
技术跃升幅度:★★★★☆
看点和重要性:★★★★☆
Android的出现并强势发展是近期手机行业当中引人注目的大事,Google介入手机领域的方式出乎所有人的
意 ...