界面: Activitypackage
com.example.serviceTest;import android.app.Activity;import
android.content.ComponentName;import android.content...
分类:
移动开发 时间:
2014-05-18 19:12:31
阅读次数:
377
绑定服务:
用于间接调用服务里面的方法。如果调用者Activity被销毁了,服务也跟着销毁了,服务也会跟着销毁。开启服务:
不可以调用服务里面的方法。如果调用者的Activity退出了,服务还会长期在后台运行生命周期 ①单独调用 startService() - onCreate,
stopS...
分类:
移动开发 时间:
2014-05-18 18:56:02
阅读次数:
326
public class MainActivity extends Activity {
private ImageView operImage;
private PointF point = new PointF();//记录手指的位置
private PointF midPoint = new PointF();//记录手指间的中点的位置
private Matrix matrix...
分类:
移动开发 时间:
2014-05-18 18:44:57
阅读次数:
363
package com.dhy.phonedial;
import android.app.Activity;
import android.app.Fragment;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.LayoutInflate...
分类:
移动开发 时间:
2014-05-18 15:58:42
阅读次数:
342
public class MainActivity extends Activity {
private ImageView iv;
float startX = 0;
float startY = 0;
//获得一个可以被bitmap
Bitmap bitmap = Bitmap.createBitmap(400, 400,Bitmap.Config.ARGB_8888);
//创...
分类:
移动开发 时间:
2014-05-18 15:54:33
阅读次数:
318
如下58同城快捷方式的效果:
下面是添加桌面快捷方式:
/**
* 启动某个activity是需要在manifest里面定义
*/
private void addShortCut()
{
// 安装的Intent
Intent shortc...
分类:
移动开发 时间:
2014-05-18 04:52:12
阅读次数:
289
简介:为什么要用Fragment?使用Fragment可以在一个Activity中实现不同的界面。Fragment与Fragment之间的动画切换,远比Activity与Activity之间的动画切换变化方式多。很多时候,我们通过使用一个Activity,切换多个Fragment。本次博客,主要列举一下Fragment与它的Activity之间进行数据交换的方式。1.Fragment中通过getA...
分类:
移动开发 时间:
2014-05-18 02:53:20
阅读次数:
426
super.onDestroy();
的问题。注意:没有显式地在自己的方法中调用父类Activity的onDestroy是会报错的。我的问题很简单,在我覆盖的onDestroy(),方法中需要调用父类的onDestroy。我就是不懂调用的时机,就像下面两种。protectedvoidonDestro...
分类:
移动开发 时间:
2014-05-17 19:13:46
阅读次数:
767
package com.example.HyyRecord;import
android.app.Activity;import android.content.Intent;import
android.media.MediaRecorder;import android.net.Uri;impo...
分类:
移动开发 时间:
2014-05-17 19:09:09
阅读次数:
349
Intent intent = new Intent();
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setAction(Intent.ACTION_VIEW); inten...
分类:
移动开发 时间:
2014-05-17 19:03:17
阅读次数:
257