展会信息港展会大全

Android Launcher详解,添加和删除快捷方式及常见问题
来源:互联网   发布日期:2016-01-06 19:24:57   浏览:4800次  

导读:1..Launcher是什么?1.1Launcher是系统启动后加载的第一个应用程序1.2Launcher是其他应用程序的入口2.Launcher的构成:3. 主体四大组件的区别:ShortCut:应用程序的快捷方式Appwidget:桌面小部件,图形不规则LiveF......

1.. Launcher是什么?

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

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

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">

<pre name="code" class="java"><!-若希望在长按Menu键,添加快捷方式中出现应用条目,则需要加入以下内容-></pre><br>

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

<pre></pre>

<br>

<p><span style="color:#000000; background:rgb(255,255,255)">LancherDemoActivity;</span></p>

<p><br>

</p>

<p><span style="color:#000000; background:rgb(255,255,255)"></span></p>

<pre name="code" class="java">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(<span style="color:#FF0000;">"com.android.action.test"</span>));

//发送广播

sendBroadcast(shortcut);

}

});

/**

* 删除桌面快捷方式

*/

button2.setOnClickListener(new OnClickListener() {

public void onClick(View v) {

deleteShortCurt2DeskTop();

}

private void deleteShortCurt2DeskTop() {

Intent shortcut = newIntent("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(<span style="color:#FF0000;">"com.android.action.test"</span>));

sendBroadcast(shortcut);

}

});

}

}</pre><br>

<br>

<p></p>

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

<p><span style="font-family:宋体"><span style="color:#FF0000">否则删除无法生效</span><br>

</span></p>

<p><br>

</p>

<p><br>

<span style="font-family:宋体"></span></p>

<p><span style="font-family:宋体"><br>

</span></p>

<p><span style="font-family:宋体"><br>

</span></p>

<br>

赞助本站

人工智能实验室

相关热词: 快捷方式 添加 删除

相关内容
AiLab云推荐
展开

热门栏目HotCates

Copyright © 2010-2024 AiLab Team. 人工智能实验室 版权所有    关于我们 | 联系我们 | 广告服务 | 公司动态 | 免责声明 | 隐私条款 | 工作机会 | 展会港