zoukankan      html  css  js  c++  java
  • 暗码启动应用

    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);  
            }  
        }  
      
    }  
    

      

  • 相关阅读:
    深入了解css的行高Line Height属性
    【C++】函数指针
    【C++】常用知识点
    将数字转化为液晶显示屏的样子
    【多媒体】PCM
    【Android】网络下载图片&SD卡文件存储
    CPU 缓存(Cache)
    【C++】typename
    【多媒体】音频格式
    【Android】图片的异步加载
  • 原文地址:https://www.cnblogs.com/xiayexingkong/p/6530605.html
Copyright © 2011-2022 走看看