Android Launcher开发(四)Launcher概述及简单添加和删除应用程序的快捷方式

1.. Launcher是什么?


  1.1  Launcher是系统启动后加载的第一个应用程序

  1.2  Launcher是其他应用程序的入口


2.Launcher的构成:


 

3. 主体四大组件的区别:

ShortCut: 应用程序的快捷方式

Appwidget:桌面小部件,图形不规则

LiveFolder: 文件夹

ContentProvider的形式展示应用中特定数据的集合

WallPaper: 壁纸



预览图如下:



4. 通过按钮添加或者删除应用程序的快捷方式Demo:


Intent.EXTRA_SHORTCUT_INTENT,

布局文件:

Main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello" />

    <Button
        android:id="@+id/BT_InstallShortCurt"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Install ShortCurt" />

    <Button
        android:id="@+id/BT_UnInstallShortCurt"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="UnInstall ShortCurt" />

</LinearLayout>


清单文件Mainifest.xml


<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.itheima.lancher"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="8" />
    <!-- 该权限为系统自定义权限 -->
	<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />  
	<uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" /> 
    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".LancherDemoActivity"
            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=".ShortCutActivity">
        
    <!-若希望在长按Menu键,添加快捷方式中出现应用条目,则需要加入以下内容->

  <intent-filter ><action android:name="android.intent.action.CREATE_SHORTCUT"/> </intent-filter> </activity> </application></manifest>

LancherDemoActivity;

import android.app.Activity;
import android.content.ComponentName;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class LancherDemoActivity extends Activity {
    private Button button1;
    private Button button2;

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        button1 = (Button) findViewById(R.id.BT_InstallShortCurt);
        button2 = (Button) findViewById(R.id.BT_UnInstallShortCurt);
        button1.setOnClickListener(new OnClickListener() {
			
public void onClick(View v) {
	addShortCurt2DeskTop();
	}

/**
 * 添加桌面快捷方式
*/
private void addShortCurt2DeskTop() {
        Intent shortcut = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");  
        //快捷方式的名称 
	shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, "TonyAutoShortCut"); 
	shortcut.putExtra("duplicate", false); //不允许重复创建  
	shortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,Intent.ShortcutIconResource.fromContext(LancherDemoActivity.this, R.drawable.beauty));
	shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(LancherDemoActivity.this,LancherDemoActivity.class).setAction("com.android.action.test"));

//发送广播
sendBroadcast(shortcut);
	}
});
        
/**
* 删除桌面快捷方式
*/
button2.setOnClickListener(new OnClickListener() {
   public void onClick(View v) {
    deleteShortCurt2DeskTop();  
   }
   
   private void deleteShortCurt2DeskTop() {
   Intent shortcut = new   Intent("com.android.launcher.action.UNINSTALL_SHORTCUT");  
		          
        //快捷方式的名称  
	shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, "TonyAutoShortCut");  
			          
	shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(LancherDemoActivity.this,LancherDemoActivity.class).setAction("com.android.action.test"));  
			    sendBroadcast(shortcut);
			}
		});
        
        
    }
}


注意事项: 在设置 EXTRA_SHORTCUT_INTENT时,添加和删除快捷方式的这个INTENT对象的ACTION属性必须设置为相同内容,才能声明删除和创建的快捷方式是一个,进行绑定,

否则删除无法生效






  • 10
    点赞
  • 26
    收藏
    觉得还不错? 一键收藏
  • 3
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值