Android 创建单独的服务运行在后台(无界面)

不给 Activity   setContentView(......);也就是不给他设置布局文件,

public class MainActivity extends Activity {
 
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        
        System.out.println("MainActivity  OnCreate()....");
        
        System.out.println("准备开启服务");
        Intent intent = new Intent(MainActivity.this,TestService.class);  
        startService(intent);  
    }
}
 

android:theme="@android:style/Theme.NoDisplay"

 

        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
                    android:name=".MainActivity"
            android:label="@string/app_name"
            android:theme="@android:style/Theme.NoDisplay"
            >
           
               
 
               
           

       
 
       
       

   
 

可以Ctrl+左键点进去看看这个主题是怎么写的:

 
   
 

你可能感兴趣的:(android)