将app变为桌面程序,开机后不再显示原桌面,而是显示我们的app界面

步骤一:在项目清单跟节点加入android:installLocation="internalOnly",指定你的app安装到内存中。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.xxxxxx.xxx"
android:installLocation="internalOnly">
步骤二:在第一个要启动的activity的filter中加入<intent-filter>,让app成为主程序。
<activity
android:name=".ui.SplashAty"
android:theme="@style/AppSplash">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

             <category android:name="android.intent.category.HOME" />
            <category android:name="android.intent.category.DEFAULT" /> 
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

!!!!!!!!!完工!!!!!!!!!!!

Android默认桌面设置终级大招

最近研究桌面程序开发,遇到一个难题,就是按Home键没法选择自己的桌面作为默认桌面,经过一番辛苦的查找组合,终于从各个旮旯挖出代码,然后组合修改,调试,终于修成正果。各位看官,直接看代码:

import android.app.Activity;
import android.app.WallpaperManager;
import android.content.BroadcastReceiver;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.graphics.Color;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.provider.Contacts;
import android.provider.Settings;
import android.support.v4.view.PagerAdapter;
import android.support.v4.view.ViewPager;
import android.support.v7.widget.GridLayout;
import android.text.SpannableString;
import android.text.Spanned;
import android.text.style.RelativeSizeSpan;
import android.text.style.SuperscriptSpan;
import android.util.DisplayMetrics;
import android.util.Log;
import android.util.TypedValue;
import android.view.KeyEvent;
import android.view.View;
import android.view.WindowManager;
import android.widget.DigitalClock;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;

import com.disney.sclocker.R;
import com.disney.sclocker.alarm.ClockAlarmActivity;
import com.disney.sclocker.locker.ScreenLockService;
import com.disney.sclocker.util.Utils;
import com.disney.sclocker.widget.DisneyAnalogClockV1;
import com.disney.sclocker.widget.GuideViewPager;

import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.List;

public class DesktopActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    


    setContentView(R.layout.activity_desktop);
    
    //HOME键侦测
    IntentFilter homeFilter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
    registerReceiver(homeReceiver, homeFilter);
    Log.d("123", "android.os.Build.MANUFACTURER=" + android.os.Build.MANUFACTURER);
}




@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
    switch (keyCode) {
        case KeyEvent.KEYCODE_BACK:
            return true;
        case KeyEvent.KEYCODE_HOME:
            return true;
    }
    return super.onKeyDown(keyCode, event);
}




//Home键侦测---[----
private final BroadcastReceiver homeReceiver = new BroadcastReceiver() {
    final String SYS_KEY = "reason"; // 标注下这里必须是这么一个字符串值


    final String SYS_HOME_KEY = "homekey";// 标注下这里必须是这么一个字符串值


    @Override
    public void onReceive(Context context, Intent intent) {
        String action = intent.getAction();
        if (action.equals(Intent.ACTION_CLOSE_SYSTEM_DIALOGS)) {
            String reason = intent.getStringExtra(SYS_KEY);
            if (reason != null && reason.equals(SYS_HOME_KEY)) {
                Log.i("TT", "home键监听");
                String currentHome = getHomeLauncher();
                Log.i("TT", "currentHome="+currentHome);
                if (isDefaultHome()) {
                    return;
                }
                setDefaultL();




            }
        }
    }
};


private void setDefaultL(){


    Intent intent = new Intent(Intent.ACTION_MAIN);
    intent.addCategory("android.intent.category.HOME");
    try {
        intent.setComponent(new ComponentName("android","com.android.internal.app.ResolverActivity"));
        startActivity(intent);
    }catch (Exception e){//这里就是为了处置华为手机的
        try {

intent.setComponent(new ComponentName("com.huawei.android.internal.app", "com.huawei.android.internal.app.HwResolverActivity"));//这个类有些华为手机找不到
startActivity(intent);
} catch (Exception e1){
e1.printStackTrace();
try {
startHuaweiSettingActOfDefLauncher();//开启桌面设置
}catch(Exception e2){
e2.printStackTrace();
intent = new Intent(Settings.ACTION_APPLICATION_SETTINGS);//还不行,就只能应用程序设置了
startActivity(intent);
}

        }
    }
}


/**
 * 判断自己是否为默认桌面
 */
public final boolean isDefaultHome() {
    Intent intent = new Intent(Intent.ACTION_MAIN);//Intent.ACTION_VIEW
    intent.addCategory("android.intent.category.HOME");
    intent.addCategory("android.intent.category.DEFAULT");
    PackageManager pm = getPackageManager();
    ResolveInfo info = pm.resolveActivity(intent, PackageManager.MATCH_DEFAULT_ONLY);
    boolean isDefault = getPackageName().equals(info.activityInfo.packageName);
    return isDefault;
}


public void startHuaweiSettingActOfDefLauncher() {
    IntentFilter localIntentFilter = new IntentFilter();
    localIntentFilter.addAction(Intent.ACTION_MAIN);//"android.intent.action.MAIN"
    localIntentFilter.addCategory(Intent.CATEGORY_HOME);//"android.intent.category.HOME"
    Intent localIntent3 = new Intent(localIntentFilter.getAction(0));
    localIntent3.addCategory(localIntentFilter.getCategory(0));
    Intent localIntent4 = new Intent();
    localIntent4.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    localIntent4.setClassName("com.android.settings", "com.android.settings.Settings$PreferredSettingsActivity");
    localIntent4.putExtra("preferred_app_package_name", getPackageName());
    localIntent4.putExtra("preferred_app_class_name", DesktopActivity.class.getName());
    localIntent4.putExtra("is_user_confirmed", true);
    localIntent4.putExtra("preferred_app_intent", localIntent3);
    localIntent4.putExtra("preferred_app_intent_filter", localIntentFilter);
    localIntent4.putExtra("preferred_app_label", "默认桌面设置");
    startActivity(localIntent4);
}





private String getHomeLauncher() {
    Intent intent = new Intent(Intent.ACTION_MAIN);
    intent.addCategory(Intent.CATEGORY_HOME);
    ResolveInfo resolveInfo = getPackageManager().resolveActivity(intent, 0);
    String currentHomePackage = resolveInfo.activityInfo.packageName;
    return currentHomePackage;
}


@Override
protected void onDestroy() {
    unregisterReceiver(homeReceiver);
    super.onDestroy();
}

}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,039评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,223评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,916评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,009评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,030评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,011评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,934评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,754评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,202评论 1 309
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,433评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,590评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,321评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,917评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,568评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,738评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,583评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,482评论 2 352

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 172,053评论 25 707
  • ¥开启¥ 【iAPP实现进入界面执行逐一显】 〖2017-08-25 15:22:14〗 《//首先开一个线程,因...
    小菜c阅读 6,397评论 0 17
  • afinalAfinal是一个android的ioc,orm框架 https://github.com/yangf...
    wgl0419阅读 6,276评论 1 9
  • 行走在冬夜的冷风中,我不说不代表我不会痛,, 行测刷题,一个错了三个,一个对了8个,,,
    岁月无涯阅读 117评论 0 0
  • 跑步地点:天津,青鸟盛地健身 跑步距离:7公里 累计里程:27公里
    种花家的小小兔子阅读 133评论 0 0