안 드 로 이 드 에서 CMD 명령 의 전원 을 끄 고 recovery 를 다시 시작 합 니 다.

안 드 로 이 드 가 처음 일 어 났 을 때 일부 소 규모 소프트웨어 를 불 태 웠 다.과일 을 자 르 고 톰 고양이,치 마 를 부 는 것 이 대표 적 이 었 다.물론 실용성 이 강 한 전원 끄 기 재 부팅 소프트웨어 도 있 었 다.우 리 는 바 이 두 에 가서 검색 해 보 자.
这里写图片描述
캡 처:
这里写图片描述
CMD 명령 이해
우리 가 cmd 에서 진행 하 는 조작 따 위 는 일일이 말 하지 않 겠 습 니 다.우 리 는 아래 의 이 몇 가지 명령 만 알 면 됩 니 다.
재 부팅:su-c reboot
꺼 짐:reboot-p
이런 생각 이 있 으 면 우 리 는 실현 할 수 있다.
activity_main.xml

<LinearLayout 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"
android:gravity="clip_vertical"
android:orientation="vertical"
android:padding="15dp" >
<Button
android:id="@+id/btn_reboot"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:background="@drawable/btn_bg"
android:text="  " />
<Button
android:id="@+id/btn_power"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:background="@drawable/btn_bg"
android:text="  " />
<Button
android:id="@+id/btn_recovery"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:background="@drawable/btn_bg"
android:text="recovery" />
<Button
android:id="@+id/btn_finish"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:background="@drawable/btn_bg"
android:text="  " />
</LinearLayout>
MainActivity

package com.lgl.power;
import java.io.DataOutputStream;
import java.io.IOException;
import android.app.Activity;
import android.app.AlertDialog;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class MainActivity extends Activity implements OnClickListener {
private Button btn_reboot, btn_power, btn_recovery, btn_finish;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initView();
}
private void initView() {
btn_reboot = (Button) findViewById(R.id.btn_reboot);
btn_reboot.setOnClickListener(this);
btn_power = (Button) findViewById(R.id.btn_power);
btn_power.setOnClickListener(this);
btn_recovery = (Button) findViewById(R.id.btn_recovery);
btn_recovery.setOnClickListener(this);
btn_finish = (Button) findViewById(R.id.btn_finish);
btn_finish.setOnClickListener(this);
}
@Override
public void onClick(View v) {
switch (v.getId()) {
//   
case R.id.btn_reboot:
// cmd  
String cmd = "su -c reboot";
try {
//     
Runtime.getRuntime().exec(cmd);
} catch (IOException e) {
new AlertDialog.Builder(MainActivity.this).setTitle("   ")
.setMessage("     ROOT,       !")
.setPositiveButton("OK", null).show();
}
break;
//   
case R.id.btn_power:
try {
//        su
Process process = Runtime.getRuntime().exec("su");
//     
DataOutputStream out = new DataOutputStream(
process.getOutputStream());
out.writeBytes("reboot -p
"); // out.writeBytes("exit
"); out.flush(); } catch (IOException e) { new AlertDialog.Builder(MainActivity.this).setTitle(" ") .setMessage(" ROOT, !") .setPositiveButton("OK", null).show(); } break; // recovery case R.id.btn_recovery: try { // Process process = Runtime.getRuntime().exec("su"); DataOutputStream out = new DataOutputStream( process.getOutputStream()); out.writeBytes("reboot recovery
"); out.writeBytes("exit
"); out.flush(); } catch (IOException e) { new AlertDialog.Builder(MainActivity.this).setTitle(" ") .setMessage(" ROOT, !") .setPositiveButton("OK", null).show(); } break; // case R.id.btn_finish: finish(); break; } } }
뭘 더 기 다 려?어서 해 보 세 요.저 희 는 su 권한 을 직접 얻어 스 크 립 트 명령 을 보 내기 때문에 다른 권한 이 필요 하지 않 습 니 다.
안 드 로 이 드 가 내 린 CMD 명령 의 전원 끄 기 재 부팅 및 복구 재 개 에 관 한 지식 은 여기까지 소개 해 드 리 겠 습 니 다.도움 이 되 셨 으 면 좋 겠 습 니 다.궁금 한 점 이 있 으 시 면 메 시 지 를 남 겨 주세요.편집장 님 이 바로 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기