プログラムで[設定]>[端末情報]>[ステータス]アクティビティを開く方法を知っている人はいますか?
ありがとう!
adb logcat ActivityManager:V *:Sを使用して、このコマンドでcom.android.settings / .Settings $ StatusActivityのようなアクティビティ名を取得しました。次に、インテントを作成しました。
Intent statusIntent = new Intent();
statusIntent.setAction("android.intent.action.MAIN");
statusIntent.setClassName("com.android.settings","com.android.settings.Settings$StatusActivity");
startActivity(statusIntent);
インテントを作成し、以下の値を使用してクラス名/クラスパスを設定し、インテントを開始します
インテント{act=android.intent.action.MAIN cmp = com.android.settings / .deviceinfo.Status}