在eclipse中沒有錯誤..但是每當我啓動應用程序時,它的FC的:( 我試圖做一個應用程序,它將腳本安裝到init.d,每當我按下按鈕。問題是括號Cuz他們困擾了我很多!你可以看到,他們被安排在一個無組織的方式。在logcat中使用NullPointerException關閉應用程序
MainActivity.java
package com.example.kernel.version;
import java.io.IOException;
import java.util.concurrent.TimeoutException;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import com.stericson.RootTools.Command;
import com.stericson.RootTools.RootTools;
public class MainActivity extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Button button= (Button) findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
RootTools.remount("/system/", "rw");
Command command = new Command(0, "su", "cp /sdcard/scripts/* /system/etc/init.d/")
{
@Override
public void output(int id, String line)
{
}
};
try {
RootTools.getShell(true).add(command).waitForFinish();
} catch (InterruptedException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (TimeoutException e) {
e.printStackTrace();
}
}
});}}
activity_main.xml中
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="22dp"
android:layout_marginTop="141dp"
android:text="Install Scripts" />
</RelativeLayout>
PLZ發佈您的logcat –
_App強制關閉而無錯誤。你確定你在使用Android? –
快照你的logcat ..! – GaneshKumar