在此谢谢gryphone的博客文章,从他那里学到了很多东西,真是谢谢,将学的内容也贴上来给大家分享,自己也做个存档,以便以后复习利用;
[b][color=red]1.创建快捷方式的方法1 [/color][/b]
当我们在模拟器或手机上屏幕上长按屏幕会弹出选择框,询问是否添加快捷方式等操作:当我们选择shortCut后,就会出现一个ListView列出所有可以添加的items:
下面通过手动建立一个程序,添加了intentFilter为android.intent.action.CREATE_SHORTCUT的intent,这样当选择了它后,就会在桌面生成一个自定义需要这个activity去做一件事情的快捷图标:
1.处理点击快捷图标后执行的代码块
ShortcutUsage.java文件
2.第二个主要的是配置文件AndroidMenifest.xml文件
3. lauchActivity.java文件
main.xml文件默认生成的就可以了,这样当执行文章开头代码,就会在桌面建立一个拨打110的快捷方式;
[b][color=red]2.创建快捷方式的方法2 [/color][/b]
1. ShortcutUsage.java文件内容
主要是通过一个按钮点击事件广播一个intent给所有可能接收到的Receivers来响应,
2.配置文件AndroidMenifest.xml文件
其他简单的资源文件都自己配下,希望对大家有所帮助.
[b][color=red]1.创建快捷方式的方法1 [/color][/b]
当我们在模拟器或手机上屏幕上长按屏幕会弹出选择框,询问是否添加快捷方式等操作:当我们选择shortCut后,就会出现一个ListView列出所有可以添加的items:
下面通过手动建立一个程序,添加了intentFilter为android.intent.action.CREATE_SHORTCUT的intent,这样当选择了它后,就会在桌面生成一个自定义需要这个activity去做一件事情的快捷图标:
1.处理点击快捷图标后执行的代码块
ShortcutUsage.java文件
package cn.com;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.os.Parcelable;
public class ShortcutUsage extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent addShortcut;
//获取启动这个activity的intent的action
if (getIntent().getAction().equals(Intent.ACTION_CREATE_SHORTCUT)) {
addShortcut = new Intent();
addShortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, "110");
Parcelable icon = Intent.ShortcutIconResource.fromContext(this,
R.drawable.icon);
//初始化快捷方式图标
addShortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);
Intent callPolice = new Intent(Intent.ACTION_CALL, Uri
.parse("tel://110"));
addShortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, callPolice);
setResult(RESULT_OK, addShortcut);
} else {
setResult(RESULT_CANCELED);
}
finish();
}
}
2.第二个主要的是配置文件AndroidMenifest.xml文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="cn.com" android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".lauchActivity" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".ShortcutUsage">
<intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="3" />
</manifest>
3. lauchActivity.java文件
package cn.com;
import android.app.Activity;
import android.os.Bundle;
public class startActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
main.xml文件默认生成的就可以了,这样当执行文章开头代码,就会在桌面建立一个拨打110的快捷方式;
[b][color=red]2.创建快捷方式的方法2 [/color][/b]
1. ShortcutUsage.java文件内容
主要是通过一个按钮点击事件广播一个intent给所有可能接收到的Receivers来响应,
package cn.com;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
public class ShortcutUsage extends Activity {
private final String ACTION_ADD_SHORTCUT = "com.android.launcher.action.INSTALL_SHORTCUT";
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
findViewById(R.id.button).setOnClickListener(new OnClickListener() {
public void onClick(View v) {
// TODO Auto-generated method stub
shortcutCreate();
}
});
}
public void shortcutCreate() {
Intent intent = new Intent(ACTION_ADD_SHORTCUT);
Intent dial = new Intent(Intent.ACTION_CALL);
dial.setData(Uri.parse("tel://110"));
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "dial to 110");
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, dial);
intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,
Intent.ShortcutIconResource.fromContext(this, R.drawable.jing));
sendBroadcast(intent);
}
}
2.配置文件AndroidMenifest.xml文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="cn.com" android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".ShortcutUsage" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="3" />
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
</manifest>
其他简单的资源文件都自己配下,希望对大家有所帮助.