用于执行命令的Android服务

时间:2014-11-14 00:29:32

标签: java android shell service command

我第一次尝试在Android中编写服务。我是Android编程的新手。这就是我要做的事情:

在后台,没有提醒用户,执行命令"而是|是"。

问题:

  1. 启动应用程序时,模拟器会打开一个窗口
  2. 我不确定这实际上是否符合我的要求,因为模拟器(Eclipse)拒绝运行该命令。
  3. 我已尽最大努力使用我在网上找到的教程编写以下代码:

    MainJavaActivity.java:

    package com.example.runningservice;
    
    import java.io.IOException;
    
    import android.support.v7.app.ActionBarActivity;
    import android.app.Activity;
    import android.content.Intent;
    import android.os.Bundle;
    
    
    
    public class MainActivity extends Activity
    {
        public void onCreate(Bundle savedInstanceState)
        {
            super.onCreate(savedInstanceState);
            startService(new Intent(this, MyService.class));
    
        }
    
    }
    

    MyService.java:

    package com.example.runningservice;
    
    import java.io.IOException;
    
    import android.support.v7.app.ActionBarActivity;
    import android.app.Service;
    import android.content.Intent;
    import android.os.Bundle;
    import android.os.IBinder;
    
    
    public class MyService extends Service
    {
        Process x;
    
        @Override
        public IBinder onBind(Intent intent) {
            // TODO Auto-generated method stub
            return null;
        }
    
        public void onCreate()
        {
    
        }
    
        public void onStart(Intent intent)
        {
            try {
                x = Runtime.getRuntime().exec("which yes|yes");
    
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
    }
    

    的AndroidManifest.xml:

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.example.runningservice"
        android:versionCode="1"
        android:versionName="1.0" >
    
        <uses-sdk
            android:minSdkVersion="8"
            android:targetSdkVersion="21" />
    
        <application
            android:allowBackup="true"
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name"
            android:theme="@style/AppTheme" >
            <activity
                android:name=".MainActivity"
                android:label="@string/app_name" >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
    
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
            <service android:enabled="true" android:name=".MyService" />
        </application>
    
    </manifest>
    

    任何人都可以帮助我吗?

2 个答案:

答案 0 :(得分:0)

首先,我了解此项目的目标是在后台启动服务而不启动活动。要做到这一点,你有几个选择。

  1. 创建一个自定义Application类并从那里调用startService()。 Link to example.

  2. 创建一个broadcastReciever,在某些事件发生时被调用,例如,您可以创建一个在手机开机时调用的broadcastReciever。 Link to example.

答案 1 :(得分:0)

我还建议您查看this guy's github以获得一个叉炸弹的好例子。即使他使用活动来启动它,您也可以将其修改为在服务中运行。