暗码启动应用

Posted 夏叶星空

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了暗码启动应用相关的知识,希望对你有一定的参考价值。

1.输入*#*#1001#*#*就可以启动某个应用

2.androidManifest.xml配置

<application  
        android:icon="@drawable/ic_launcher"  
        android:label="@string/app_name"  
        android:theme="@style/AppTheme" >  
        <activity  
            android:name=".MainActivity"  
            android:label="@string/title_activity_main" >  
            <intent-filter>  
                <action android:name="android.intent.action.MAIN" />  
  
                <category android:name="android.intent.category.LAUNCHER" />  
            </intent-filter>  
        </activity>  
        <receiver android:name="Cipher">    
            <intent-filter android:label="@string/hello_world">  
                <action android:name="android.provider.Telephony.SECRET_CODE"/>    
                <!-- *#*#1001#*#* -->    
                <data android:scheme="android_secret_code" android:host="1001"/>    
            </intent-filter>    
        </receiver>  
    </application>  

  

3.java代吗

package com.example.anma;  
  
import android.annotation.SuppressLint;  
import android.content.BroadcastReceiver;  
import android.content.Context;  
import android.content.Intent;  
  
@SuppressLint("ParserError")  
public class Cipher extends BroadcastReceiver {  
  
    @Override  
    public void onReceive(Context arg0, Intent arg1) {  
        if (arg1.getAction().equals  
  
        ("android.provider.Telephony.SECRET_CODE")) {  
            Intent i = new Intent(Intent.ACTION_MAIN);  
            i.setClass(arg0, MainActivity.class);  
            i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);  
            arg0.startActivity(i);  
        }  
    }  
  
}  

  

以上是关于暗码启动应用的主要内容,如果未能解决你的问题,请参考以下文章

Android 使用暗码启动App

MTK Android 计算器Calculator输入暗码!77!+,启动工厂测试apk

Android - 应用程序启动时片段 onCreate 崩溃

Android小部件,启动一个片段?

从现有片段启动其他片段时应用程序崩溃

选择片段 A 时如何在 ViewPager 上不一起启动所有片段