안 드 로 이 드 에서 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 명령 의 전원 끄 기 재 부팅 및 복구 재 개 에 관 한 지식 은 여기까지 소개 해 드 리 겠 습 니 다.도움 이 되 셨 으 면 좋 겠 습 니 다.궁금 한 점 이 있 으 시 면 메 시 지 를 남 겨 주세요.편집장 님 이 바로 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin의 기초 - 2부지난 글에서는 Kotlin이 무엇인지, Kotlin의 특징, Kotlin에서 변수 및 데이터 유형을 선언하는 방법과 같은 Kotlin의 기본 개념에 대해 배웠습니다. 유형 변환은 데이터 변수의 한 유형을 다른 데이터...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.