0

以下のサンプルコードを使用して、プログラムでモバイルを再起動しましたが、機能しません。ここで私が何が間違っていたのかを提案してください。

Reboot.java

public class Reboot extends Activity implements View.OnClickListener {

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.main);

        ((ImageButton) findViewById(R.id.restartButton))
                .setOnClickListener(this);
    }

    public void onClick(View v) {
        try {
            Process proc = Runtime.getRuntime().exec(
                    new String[] { "su", "-c", "reboot" });
            proc.waitFor();
        } catch (Exception ex) {
            Log.i("Reboot Code", "Could not reboot", ex);
        }

        //This method also i did, kindy un comment this code and then check
        // try {
        // Runtime.getRuntime().exec(
        // new String[] { "/system/bin/su", "-c", "reboot now" });
        // } catch (IOException e) {
        // e.printStackTrace();
        // }
    }

}

Manifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.bootup_sample_app"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="4"
        android:targetSdkVersion="15" />

    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="android.permission.REBOOT"/>

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".Reboot"
            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>

</application>

</manifest>
4

1 に答える 1

1

suデバイスがルート化されていない場合、本番デバイスで呼び出すことはできません。ルート化されているということは、デバイスに対するより多くのアクセス/権限があることを意味します (セキュリティ リスクになる可能性があります)。ルート用にデバイスをセットアップしていない場合、デバイスはルート化されていないため、su.

于 2012-12-07T18:05:45.013 に答える