I use the Elicpse IDE to develope the ansdroid app.Sometime encounter the messy code in the Elicpse
One solve method is that to fix the Ecicpse's enCoding setting:
click "Windows->Preference...
分类:
其他好文 时间:
2014-06-19 09:57:22
阅读次数:
211
They can usually be purchased in three sizes: £
5, £ 1 and a half pound bags. I even saw them to buy on eBay. Many companies are
cutting Tekpak bag of...
分类:
其他好文 时间:
2014-06-16 09:23:39
阅读次数:
443
package com.home.uploadfile;import
java.io.File;import android.app.Activity;import android.os.Bundle;import
android.view.View;import android.view.View...
分类:
其他好文 时间:
2014-06-16 07:18:00
阅读次数:
230
MainActivity如下:
package cc.cn;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.app.Activity;
/**
* Demo描述:...
分类:
移动开发 时间:
2014-06-15 19:59:02
阅读次数:
258
Android开发中,通常会使用BroadcastReceiver来接受Push推送消息。当APP收到推送通知时,我们需要在通知的点击事件中加入自己的逻辑。比如跳转到MainActivity。比如下面的代码(注意红色部分):public void onReceive(Context context, Intent intent) {
Bundle bundle = intent.g...
分类:
移动开发 时间:
2014-06-15 19:54:15
阅读次数:
251
maven+maven-bundle-plugin+karaf搭建osgi之HelloWorld
mvn-hello-provider...
分类:
其他好文 时间:
2014-06-15 17:01:15
阅读次数:
260
osgi是一个Java的开源框架,是一个基于java的组件框架。 第一点, 基于OSGI
的应用程序可动态更改运行状态和行为。在OSGI框架中,每一个Bundle 实际上都是可热插拔的,因此,对一个特定的Bundle
进行修改不会影响到容器中的所有应用,运行的大部分应用还是可以照常工作。当你将修改后...
分类:
其他好文 时间:
2014-06-13 17:49:42
阅读次数:
224
在OSGi环境中,在Bundle内部代码中要得到自己Bundle的ClassLoader就很简单,在自己Bundle的代码中,直接写this.getClass().getClassLoader()就得到了自己Bundle的ClassLoader了。但怎么在其他Bundle或外部代码中得到任意一个Bu...
分类:
其他好文 时间:
2014-06-12 17:45:48
阅读次数:
176
OS X的执行程序一般分为两种。一种是控制台程序,一种是带有GUI的OS
X应用程序。控制台程序往往就一个文件构成executable,而GUI应用通常是一个包(即文件夹),里面除了executable之外还有其它资源。对于一个GUI程序来说,我们可以通过读取Bundle来获得资源文件。那么对于控制...
分类:
其他好文 时间:
2014-06-12 14:11:47
阅读次数:
252